terraform-operator icon indicating copy to clipboard operation
terraform-operator copied to clipboard

run scheduled workflows

Open IbraheemAlSaady opened this issue 2 years ago • 0 comments

Describe the solution you'd like A way to schedule Terraform workflows and run either plan or apply

Additional context The configuration could look something like this

apiVersion: run.terraform-operator.io/v1alpha1
kind: ScheduledWorkflow
metadata:
  name: terraform-aws-s3
spec:
  schedule: 0 * * * *
  withApply: true
  terraformRef:
    name: terraform-aws-s3

By default, it will schedule a run to execute a plan, we can specify the withApply flag to run Terraform apply as well

IbraheemAlSaady avatar Jul 07 '22 19:07 IbraheemAlSaady