aws_acm: Fixup typo in argument_spec (alias should be aliases) (#65653)
This commit is contained in:
parent
30132861af
commit
9f87978eb3
1 changed files with 6 additions and 3 deletions
|
@ -92,6 +92,7 @@ options:
|
||||||
If I(state=absent) and the corresponding resource exists in a different region,
|
If I(state=absent) and the corresponding resource exists in a different region,
|
||||||
this task may report success without deleting that resource.
|
this task may report success without deleting that resource.
|
||||||
type: str
|
type: str
|
||||||
|
aliases: [arn]
|
||||||
|
|
||||||
certificate_chain:
|
certificate_chain:
|
||||||
description:
|
description:
|
||||||
|
@ -111,6 +112,7 @@ options:
|
||||||
If I(state=present) this must not be specified.
|
If I(state=present) this must not be specified.
|
||||||
(Since the domain name is encoded within the public certificate's body.)
|
(Since the domain name is encoded within the public certificate's body.)
|
||||||
type: str
|
type: str
|
||||||
|
aliases: [domain]
|
||||||
|
|
||||||
name_tag:
|
name_tag:
|
||||||
description:
|
description:
|
||||||
|
@ -124,6 +126,7 @@ options:
|
||||||
If I(state=absent), you must provide exactly one of
|
If I(state=absent), you must provide exactly one of
|
||||||
I(certificate_arn), I(domain_name) or I(name_tag).
|
I(certificate_arn), I(domain_name) or I(name_tag).
|
||||||
type: str
|
type: str
|
||||||
|
aliases: [name]
|
||||||
|
|
||||||
private_key:
|
private_key:
|
||||||
description:
|
description:
|
||||||
|
@ -289,10 +292,10 @@ def pem_chain_split(module, pem):
|
||||||
def main():
|
def main():
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
certificate=dict(),
|
certificate=dict(),
|
||||||
certificate_arn=dict(alias=['arn']),
|
certificate_arn=dict(aliases=['arn']),
|
||||||
certificate_chain=dict(),
|
certificate_chain=dict(),
|
||||||
domain_name=dict(alias=['domain']),
|
domain_name=dict(aliases=['domain']),
|
||||||
name_tag=dict(alias=['name']),
|
name_tag=dict(aliases=['name']),
|
||||||
private_key=dict(no_log=True),
|
private_key=dict(no_log=True),
|
||||||
state=dict(default='present', choices=['present', 'absent'])
|
state=dict(default='present', choices=['present', 'absent'])
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue