Skip to content

Commit

Permalink
Merge pull request #33 from wttech/keystore_and_global_trust_password…
Browse files Browse the repository at this point in the history
…_nolog

keystore and global trust store password nolog
  • Loading branch information
jan-kowalczyk-wttech authored Sep 4, 2023
2 parents d03227f + 60a4c87 commit 4d34e92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/modules/auth_user_keystore.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def run_module():
instance_id=dict(type='str'),
id=dict(type='str'),
scope=dict(type='str'),
keystore_password=dict(type='str'),
keystore_password=dict(type='str', no_log=True),
)),
required_if=[
('command', 'create', ['instance_id', 'id', 'scope', 'keystore_password']),
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/gts.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def run_module():
argument_spec=AEMC_arg_spec(dict(
command=dict(type='str', required=True),
instance_id=dict(type='str'),
password=dict(type='str'),
password=dict(type='str', no_log=True),
)),
required_if=[
('command', 'create', ['instance_id','password']),
Expand Down

0 comments on commit 4d34e92

Please sign in to comment.