adding support for execution environments

This commit is contained in:
sean cavanaugh
2021-10-12 15:20:13 -04:00
parent 19def3ae38
commit 567b6112cb
2 changed files with 5 additions and 4 deletions

View File

@@ -27,7 +27,7 @@
inventory: "{{ item.value.inventory }}"
project: "{{ item.value.project.name }}"
playbook: "{{ item.value.playbook }}"
execution_environment: "{{ item.value.execution_environment }}"
execution_environment: "{{ item.value.execution_environment | default('Default execution environment') }}"
fact_caching_enabled: "{{ item.value.fact_caching_enabled | default('false') }}"
credential: "{{ item.value.credential }}"
survey_enabled: "{{ item.value.survey_enabled }}"
@@ -50,7 +50,7 @@
inventory: "{{ item.value.inventory }}"
project: "{{ item.value.project.name }}"
playbook: "{{ item.value.playbook }}"
execution_environment: "{{ item.value.execution_environment }}"
execution_environment: "{{ item.value.execution_environment | default('Default execution environment') }}"
fact_caching_enabled: "{{ item.value.fact_caching_enabled | default('false') }}"
credential: "{{ item.value.credential }}"
survey_enabled: "{{ item.value.survey_enabled }}"