diff --git a/changelogs/fragments/1999-proxmox-fix-issue-1955.yml b/changelogs/fragments/1999-proxmox-fix-issue-1955.yml new file mode 100644 index 0000000000..274e70fb0f --- /dev/null +++ b/changelogs/fragments/1999-proxmox-fix-issue-1955.yml @@ -0,0 +1,3 @@ +--- +bugfixes: +- proxmox - removed requirement that root password is provided when containter state is ``present`` (https://github.com/ansible-collections/community.general/pull/1999). diff --git a/plugins/modules/cloud/misc/proxmox.py b/plugins/modules/cloud/misc/proxmox.py index 4f495da34e..b5040bc659 100644 --- a/plugins/modules/cloud/misc/proxmox.py +++ b/plugins/modules/cloud/misc/proxmox.py @@ -17,7 +17,6 @@ options: password: description: - the instance root password - - required only for C(state=present) type: str hostname: description: @@ -514,7 +513,7 @@ def main(): hookscript=dict(type='str'), proxmox_default_behavior=dict(type='str', choices=['compatibility', 'no_defaults']), ), - required_if=[('state', 'present', ['node', 'hostname', 'password', 'ostemplate'])], + required_if=[('state', 'present', ['node', 'hostname', 'ostemplate'])], required_together=[('api_token_id', 'api_token_secret')], required_one_of=[('api_password', 'api_token_id')], )