Skip to content

Commit 5fa3195

Browse files
authored
Rename ACM modules (ansible-collections#1263)
Rename ACM modules SUMMARY In line with what I understood to be the consensus on ansible-collections#881 and ansible-collections#610 Rename aws_acm to acm_certificate Rename aws_acm_info to acm_certificate_info ISSUE TYPE Feature Pull Request COMPONENT NAME aws_acm aws_acm_info acm_certificate acm_certificate_info ADDITIONAL INFORMATION Reviewed-by: Markus Bergholz <[email protected]>
1 parent fa58b6a commit 5fa3195

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

aws_acm.py renamed to acm_certificate.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
DOCUMENTATION = r'''
2929
---
30-
module: aws_acm
30+
module: acm_certificate
3131
short_description: Upload and delete certificates in the AWS Certificate Manager service
3232
version_added: 1.0.0
3333
description:
@@ -74,6 +74,8 @@
7474
- >
7575
Note that this may not work properly with keys of size 4096 bits, due to a
7676
limitation of the ACM API.
77+
- Prior to release 5.0.0 this module was called C(community.aws.aws_acm).
78+
The usage did not change.
7779
options:
7880
certificate:
7981
description:
@@ -176,7 +178,6 @@
176178
- amazon.aws.aws
177179
- amazon.aws.ec2
178180
- amazon.aws.tags.deprecated_purge
179-
180181
'''
181182

182183
EXAMPLES = '''

aws_acm_info.py renamed to acm_certificate_info.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@
77

88

99
DOCUMENTATION = r'''
10-
module: aws_acm_info
10+
module: acm_certificate_info
1111
short_description: Retrieve certificate information from AWS Certificate Manager service
1212
version_added: 1.0.0
1313
description:
14-
- Retrieve information for ACM certificates
14+
- Retrieve information for ACM certificates.
1515
- Note that this will not return information about uploaded keys of size 4096 bits, due to a limitation of the ACM API.
16+
- Prior to release 5.0.0 this module was called C(community.aws.aws_acm_info).
17+
The usage did not change.
1618
options:
1719
certificate_arn:
1820
description:
@@ -24,13 +26,13 @@
2426
type: str
2527
domain_name:
2628
description:
27-
- The domain name of an ACM certificate to limit the search to
29+
- The domain name of an ACM certificate to limit the search to.
2830
aliases:
2931
- name
3032
type: str
3133
statuses:
3234
description:
33-
- Status to filter the certificate results
35+
- Status to filter the certificate results.
3436
choices: ['PENDING_VALIDATION', 'ISSUED', 'INACTIVE', 'EXPIRED', 'VALIDATION_TIMED_OUT', 'REVOKED', 'FAILED']
3537
type: list
3638
elements: str

0 commit comments

Comments
 (0)