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

Migrate iam_role* modules and tests #1760

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
4cd9c3d
Initial commit
jillr Mar 2, 2020
00e04f2
migration test cleanup
jillr Mar 3, 2020
a0d89fd
Rename collection (#12)
jillr Mar 25, 2020
a36b029
Remove METADATA and cleanup galaxy.yml (#70)
jillr May 19, 2020
5ba54eb
Collections related fixes for CI (#96)
jillr Jun 16, 2020
5d711f8
Update Examples with FQCN (#67)
Akasurde Jun 16, 2020
c1c75a2
Update module_utils paths to remove aws subdir (#23)
flowerysong Jun 16, 2020
221bbfa
Update docs (#99)
jillr Jun 17, 2020
03e1336
Docs: sanity fixes (#133)
Akasurde Jul 15, 2020
fd627cd
Cleanup - use is_boto3_error_(message|code) (#268)
tremble Feb 5, 2021
be22106
Add comments to the disabled/unsupported integration test aliase file…
tremble Feb 13, 2021
dece60e
Update the default module requirements from python 2.6/boto to python…
tremble May 6, 2021
d1a6f59
Remove code testing for unsupported versions of boto3/botocore
tremble Aug 6, 2021
8b6f5a8
use a generator rather than list comprehension when using any()/all()…
tremble Aug 12, 2021
a3898c7
iam_role.py: update update_role_description to update_role
mandar242 Aug 24, 2021
3e08f8a
iam_role_info jittered backoff
marknet15 Oct 8, 2021
1997bd5
PR feedback
marknet15 Oct 9, 2021
16a0961
Whitespace linting
tremble Oct 9, 2021
9544fba
docs - Remove references to old (unsupported) versions of Ansible
tremble Oct 14, 2021
1d02b8c
replace Ansible version deprecations with date deprecations (in line …
tremble Oct 14, 2021
b27cd33
Add waiter to the iam_role module (#767)
marknet15 Oct 18, 2021
01786a7
Remove deprecated "facts" aliases (#814)
jillr Dec 2, 2021
bcbb160
IAM Role Removal Does Not Require Removal of Permission Boundary (#961)
phene Mar 16, 2022
07180a9
iam_role - delete inline policies, stabilize for migration to amazon.…
jatorcasso Apr 13, 2022
c2418c1
Revert breaking change - iam_role return values (#1068)
tremble Apr 14, 2022
e285c56
Integration test dependency cleanup (#1086)
tremble Apr 22, 2022
0348b72
Tagging fragment - Move simplest cases over to the docs fragment. (#1…
tremble Jun 1, 2022
947ff84
Update extends_documentation_fragment with amazon.aws.boto3 (#1459)
alinabuzachis Oct 5, 2022
2a90434
iam_role: drop deprecation (#1636)
markuman Jan 4, 2023
d6e6439
Ansible User-Agent identification for community.aws (#1632)
abikouo Jan 10, 2023
7314bd0
iam_role - add assume_role_policy_document_raw (#1692)
tremble Feb 2, 2023
e135480
Cleanup headers and imports (#1738)
tremble Mar 8, 2023
53e560e
Big Black PR (#1784)
tremble Apr 26, 2023
89cbb0f
Bulk migration to Python 3.6 f-strings (#1810)
tremble May 8, 2023
ee71e44
Various ARN handling fixes (#1848)
tremble Jun 26, 2023
db110c6
Mass update of docs and tests (credentials/session tokens) (#1921)
tremble Aug 31, 2023
aadd870
Migrate iam_role and iam_role_info modules from community.aws
abikouo Sep 20, 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
7 changes: 7 additions & 0 deletions changelogs/fragments/migrate_iam_role.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
major_changes:
- iam_role - The module has been migrated from the ``community.aws`` collection. Playbooks
using the Fully Qualified Collection Name for this module should be updated to use
``amazon.aws.iam_role`` (https://github.com/ansible-collections/amazon.aws/pull/1760).
- iam_role_info - The module has been migrated from the ``community.aws`` collection.
Playbooks using the Fully Qualified Collection Name for this module should be updated
to use ``amazon.aws.iam_role_info`` (https://github.com/ansible-collections/amazon.aws/pull/1760).
4 changes: 3 additions & 1 deletion meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ action_groups:
- iam_instance_profile_info
- iam_policy
- iam_policy_info
- iam_role
- iam_role_info
- iam_user
- iam_user_info
- kms_key
Expand Down Expand Up @@ -144,4 +146,4 @@ plugin_routing:
redirect: amazon.aws.ssm_parameter
aws_secret:
# Deprecation for this alias should not *start* prior to 2024-09-01
redirect: amazon.aws.secretsmanager_secret
redirect: amazon.aws.secretsmanager_secret
Loading