diff options
author | Seth Foster <fosterbseth@gmail.com> | 2021-06-08 16:49:41 +0200 |
---|---|---|
committer | Seth Foster <fosterbseth@gmail.com> | 2021-06-08 20:33:30 +0200 |
commit | 9eda6359f07d4fb65aea94387844509cd0655319 (patch) | |
tree | e4ad18befd8038d4c191dda311ee28791285752e /awx_collection | |
parent | syntax error in runtime.yml (diff) | |
download | awx-9eda6359f07d4fb65aea94387844509cd0655319.tar.xz awx-9eda6359f07d4fb65aea94387844509cd0655319.zip |
False to false to fix linter
Diffstat (limited to 'awx_collection')
-rw-r--r-- | awx_collection/tools/vars/associations.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/awx_collection/tools/vars/associations.yml b/awx_collection/tools/vars/associations.yml index 467d83ec27..6f710db3b9 100644 --- a/awx_collection/tools/vars/associations.yml +++ b/awx_collection/tools/vars/associations.yml @@ -4,13 +4,13 @@ associations: - related_item: credentials endpoint: credentials description: "The credentials used by this job template" - required: False + required: false groups: - related_item: hosts endpoint: hosts description: "The hosts associated with this group" - required: False + required: false - related_item: groups endpoint: children description: "The hosts associated with this group" - required: False + required: false |