1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

rhsm_release: removing required=true for 'release' option (#6401)

Fix rhsm_release by removing required=true for 'release' option.
This commit is contained in:
Felix Fontein 2023-04-23 16:51:05 +02:00 committed by GitHub
parent c1b16d534f
commit 486c47f922
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 6 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- "rhsm_release - make ``release`` parameter not required so it is possible to pass ``null`` as a value. This only was possible in the past due to a bug in ansible-core that now has been fixed (https://github.com/ansible-collections/community.general/pull/6401)."

View file

@ -32,8 +32,8 @@ attributes:
options: options:
release: release:
description: description:
- RHSM release version to use (use null to unset) - RHSM release version to use.
required: true - To unset either pass C(null) for this option, or omit this option.
type: str type: str
author: author:
- Sean Myers (@seandst) - Sean Myers (@seandst)
@ -107,7 +107,7 @@ def set_release(module, release):
def main(): def main():
module = AnsibleModule( module = AnsibleModule(
argument_spec=dict( argument_spec=dict(
release=dict(type='str', required=True), release=dict(type='str'),
), ),
supports_check_mode=True supports_check_mode=True
) )