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:
parent
c1b16d534f
commit
486c47f922
2 changed files with 8 additions and 6 deletions
2
changelogs/fragments/6401-rhsm_release-required.yml
Normal file
2
changelogs/fragments/6401-rhsm_release-required.yml
Normal 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)."
|
|
@ -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
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue