terraform-provider-awx icon indicating copy to clipboard operation
terraform-provider-awx copied to clipboard

Add Timeout to Job Launch

Open lavahot opened this issue 4 months ago • 0 comments

This adds the ability to define the timeout for Terraform to wait for an AWX job launch to complete. This is good for especially long job runs.

Usage example:

resource "awx_job_template_launch" "now" {
  job_template_id     = awx_job_template.cool_job.id
  wait_for_completion = true
  extra_vars          = jsonencode({})

  timeouts {
    create = "60m"
  }
}

lavahot avatar Apr 09 '24 20:04 lavahot