Skip to content

Commit

Permalink
Update default value of use_ssd argument in CDE module
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Enright <jenright@cloudera.com>
  • Loading branch information
jimright committed Jun 25, 2024
1 parent a233a3b commit 4941b82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/de.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ def main():
root_volume_size=dict(required=False, type='int', default=100),
skip_validation=dict(required=False, type='bool', default=False),
tags=dict(required=False, type='dict', default=None),
use_ssd=dict(required=False, type='bool', default=True),
use_ssd=dict(required=False, type='bool', default=None),
whitelist_ips=dict(required=False, type='list', elements='str', default=None),
force=dict(required=False, type='bool', default=False, aliases=['force_delete']),
state=dict(required=False, type='str', choices=['present', 'absent'], default='present'),
Expand Down

0 comments on commit 4941b82

Please sign in to comment.