Skip to content

Commit

Permalink
virtualmachine: suppress no_log warning on ssh_password_enabled param (
Browse files Browse the repository at this point in the history
  • Loading branch information
nbr23 authored Aug 31, 2021
1 parent e93565b commit 0153e1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/azure_rm_virtualmachine.py
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ def __init__(self):
max_price=dict(type='float', default=-1),
admin_username=dict(type='str'),
admin_password=dict(type='str', no_log=True),
ssh_password_enabled=dict(type='bool', default=True),
ssh_password_enabled=dict(type='bool', default=True, no_log=False),
ssh_public_keys=dict(type='list'),
image=dict(type='raw'),
availability_set=dict(type='str'),
Expand Down

0 comments on commit 0153e1e

Please sign in to comment.