diff options
author | ismaelbouyaf <ismael.bouya@fretlink.com> | 2022-03-21 17:46:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-21 17:46:58 +0100 |
commit | 2f5634ede6c4ad01f7a9d34407324459629c1856 (patch) | |
tree | f21120bf0a6e7bee5d2e7a3aebdf14f29538e0f7 /dhall | |
parent | 30a577fc43ef49e5e9925bc82116a2bd47f9a842 (diff) | |
parent | d58fd11546cd378ff4eba6227adc10f8c06c386a (diff) | |
download | ansible-rundeck-jobs-2f5634ede6c4ad01f7a9d34407324459629c1856.tar.gz ansible-rundeck-jobs-2f5634ede6c4ad01f7a9d34407324459629c1856.tar.zst ansible-rundeck-jobs-2f5634ede6c4ad01f7a9d34407324459629c1856.zip |
Add an option to remove existing keys that are not declared in ansible
Diffstat (limited to 'dhall')
-rw-r--r-- | dhall/package.dhall | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dhall/package.dhall b/dhall/package.dhall index 7ada0dc..4e3b668 100644 --- a/dhall/package.dhall +++ b/dhall/package.dhall | |||
@@ -10,6 +10,7 @@ let Config = | |||
10 | , rundeck_api_token : Text | 10 | , rundeck_api_token : Text |
11 | , rundeck_api_version : Optional Natural | 11 | , rundeck_api_version : Optional Natural |
12 | , rundeck_remove_missing : Optional Bool | 12 | , rundeck_remove_missing : Optional Bool |
13 | , rundeck_remove_missing_keys : Optional Bool | ||
13 | , rundeck_ignore_creation_error : Optional Bool | 14 | , rundeck_ignore_creation_error : Optional Bool |
14 | , rundeck_jobs_group : Optional Text | 15 | , rundeck_jobs_group : Optional Text |
15 | , rundeck_jobs_keys : List Key | 16 | , rundeck_jobs_keys : List Key |
@@ -19,6 +20,7 @@ let Config = | |||
19 | , default = | 20 | , default = |
20 | { rundeck_api_version = Some 26 | 21 | { rundeck_api_version = Some 26 |
21 | , rundeck_remove_missing = Some True | 22 | , rundeck_remove_missing = Some True |
23 | , rundeck_remove_missing_keys = Some False | ||
22 | , rundeck_ignore_creation_error = Some True | 24 | , rundeck_ignore_creation_error = Some True |
23 | , rundeck_jobs_group = None Text | 25 | , rundeck_jobs_group = None Text |
24 | , rundeck_jobs_keys = [] : List Key | 26 | , rundeck_jobs_keys = [] : List Key |