You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using this new terraform provider for aap and using it specifically to kick off a new job_template within AAP to run, is there options to get the status of the job back to the terraform job run?
We really just want to get the success, failure, or other status, preferably with job output sent back to terrafrorm, or at least error output on failures.
This may already be an option and I've just missed something in the documentation around it.
When using this new terraform provider for aap and using it specifically to kick off a new job_template within AAP to run, is there options to get the status of the job back to the terraform job run?
We really just want to get the success, failure, or other status, preferably with job output sent back to terrafrorm, or at least error output on failures.
This may already be an option and I've just missed something in the documentation around it.
`provider "aap" {
host = "https://aap.test/"
username = "test"
password = "password"
resource "aap_job" "my_job" {
job_template_id = 4
inventory_id = 1
extra_vars = {
ansible_ssh_user = "user"
}
}
output "agent_installer" {
value = aap_job.my_job.result
}`
Thanks
The text was updated successfully, but these errors were encountered: