Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Promote iam_mfa_device_info #1761

Merged
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
9105004
Initial commit
jillr Mar 2, 2020
1a4da2c
migration test cleanup
jillr Mar 3, 2020
f0a2030
Rename collection (#12)
jillr Mar 25, 2020
4ab93ff
Remove METADATA and cleanup galaxy.yml (#70)
jillr May 19, 2020
e763c8f
Collections related fixes for CI (#96)
jillr Jun 16, 2020
cc731da
Update Examples with FQCN (#67)
Akasurde Jun 16, 2020
a518f55
Update docs (#99)
jillr Jun 17, 2020
c71dbe4
Bulk migration to AnsibleAWSModule (#173)
tremble Aug 12, 2020
38f6e64
Python 3 compatibility error handling: use to_native(e) instead of st…
veloutin Aug 15, 2020
8d35a03
Cleanup: Bulk Migration from boto3_conn to module.client() (#188)
tremble Aug 26, 2020
05858c2
Bulk import cleanup (#360)
tremble Jan 16, 2021
d22ff45
Update the default module requirements from python 2.6/boto to python…
tremble May 6, 2021
18abdc3
Update remaining _info modules so that they run in check_mode
tremble Jul 28, 2021
84094fe
Remove deprecated "facts" aliases (#814)
jillr Dec 2, 2021
8f92555
Make example AWS UUIDS follow a specific pattern (#1539)
tremble Sep 28, 2022
2f22540
Update extends_documentation_fragment with amazon.aws.boto3 (#1459)
alinabuzachis Oct 5, 2022
5ad3dbe
Ansible User-Agent identification for community.aws (#1632)
abikouo Jan 10, 2023
d4e1904
Cleanup headers and imports (#1738)
tremble Mar 8, 2023
71a0b1a
Big Black PR (#1784)
tremble Apr 26, 2023
4b563de
Update runtime
alinabuzachis Sep 22, 2023
f5aa523
Update FQDN
alinabuzachis Sep 22, 2023
8018d3d
Add changelog fragment
alinabuzachis Sep 22, 2023
76035e8
Use the amazon.aws path for importing AnsibleAWSModule
alinabuzachis Sep 28, 2023
2656318
Update meta/runtime.yml
alinabuzachis Oct 2, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update remaining _info modules so that they run in check_mode
tremble authored and alinabuzachis committed Oct 6, 2023

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 18abdc3df2b6ef6ec63eb14813dbf4504d9c9c98
5 changes: 4 additions & 1 deletion plugins/modules/iam_mfa_device_info.py
Original file line number Diff line number Diff line change
@@ -87,7 +87,10 @@ def main():
user_name=dict(required=False, default=None),
)

module = AnsibleAWSModule(argument_spec=argument_spec)
module = AnsibleAWSModule(
argument_spec=argument_spec,
supports_check_mode=True,
)
if module._name == 'iam_mfa_device_facts':
module.deprecate("The 'iam_mfa_device_facts' module has been renamed to 'iam_mfa_device_info'", date='2021-12-01', collection_name='community.aws')