diff --git a/awx/ui/client/src/configuration/jobs-form/configuration-jobs.form.js b/awx/ui/client/src/configuration/jobs-form/configuration-jobs.form.js index 6853e9a5ba..75a932a512 100644 --- a/awx/ui/client/src/configuration/jobs-form/configuration-jobs.form.js +++ b/awx/ui/client/src/configuration/jobs-form/configuration-jobs.form.js @@ -55,6 +55,10 @@ type: 'text', reset: 'DEFAULT_PROJECT_UPDATE_TIMEOUT', }, + ANSIBLE_FACT_CACHE_TIMEOUT: { + type: 'text', + reset: 'ANSIBLE_FACT_CACHE_TIMEOUT', + }, }, buttons: { diff --git a/awx/ui/client/src/templates/job_templates/job-template.form.js b/awx/ui/client/src/templates/job_templates/job-template.form.js index 3f857c73ee..fe10b8e952 100644 --- a/awx/ui/client/src/templates/job_templates/job-template.form.js +++ b/awx/ui/client/src/templates/job_templates/job-template.form.js @@ -285,13 +285,13 @@ function(NotificationsList, CompletedJobsList, i18n) { labelClass: 'stack-inline', ngDisabled: '!(job_template_obj.summary_fields.user_capabilities.edit || canAddJobTemplate)' }, { - name: 'store_facts', - label: i18n._('Store Ansible Facts'), + name: 'use_fact_cache', + label: i18n._('Use Fact Cache'), type: 'checkbox', column: 2, awPopOver: "

" + i18n._("If enabled, a fact scan will be done when this job is launched.") + "

", dataPlacement: 'right', - dataTitle: i18n._('Store Ansible Facts'), + dataTitle: i18n._('Use Fact Cache'), dataContainer: "body", labelClass: 'stack-inline', ngDisabled: '!(job_template_obj.summary_fields.user_capabilities.edit || canAddJobTemplate)'