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_role #1793

Merged
merged 38 commits into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
0aa3018
Initial commit
jillr Mar 2, 2020
e7e3c44
migration test cleanup
jillr Mar 3, 2020
7df02da
Rename collection (#12)
jillr Mar 25, 2020
ab9b7de
Remove METADATA and cleanup galaxy.yml (#70)
jillr May 19, 2020
bed16e2
Collections related fixes for CI (#96)
jillr Jun 16, 2020
150fd56
Update Examples with FQCN (#67)
Akasurde Jun 16, 2020
9b2886a
Update module_utils paths to remove aws subdir (#23)
flowerysong Jun 16, 2020
927b3c7
Update docs (#99)
jillr Jun 17, 2020
1fd6420
Docs: sanity fixes (#133)
Akasurde Jul 15, 2020
60080f2
Cleanup - use is_boto3_error_(message|code) (#268)
tremble Feb 5, 2021
25675d8
Add comments to the disabled/unsupported integration test aliase file…
tremble Feb 13, 2021
7177507
Update the default module requirements from python 2.6/boto to python…
tremble May 6, 2021
117c711
Remove code testing for unsupported versions of boto3/botocore
tremble Aug 6, 2021
b462ad1
use a generator rather than list comprehension when using any()/all()…
tremble Aug 12, 2021
17f6589
iam_role.py: update update_role_description to update_role
mandar242 Aug 24, 2021
d5b4de0
iam_role_info jittered backoff
marknet15 Oct 8, 2021
c9375c7
PR feedback
marknet15 Oct 9, 2021
1eca9ac
Whitespace linting
tremble Oct 9, 2021
1a61567
docs - Remove references to old (unsupported) versions of Ansible
tremble Oct 14, 2021
8f43a38
replace Ansible version deprecations with date deprecations (in line …
tremble Oct 14, 2021
285956e
Add waiter to the iam_role module (#767)
marknet15 Oct 18, 2021
cf0ae3f
Remove deprecated "facts" aliases (#814)
jillr Dec 2, 2021
6c33cad
IAM Role Removal Does Not Require Removal of Permission Boundary (#961)
phene Mar 16, 2022
d7c287e
iam_role - delete inline policies, stabilize for migration to amazon.…
jatorcasso Apr 13, 2022
83e1b4f
Revert breaking change - iam_role return values (#1068)
tremble Apr 14, 2022
415f19c
Integration test dependency cleanup (#1086)
tremble Apr 22, 2022
0961d16
Tagging fragment - Move simplest cases over to the docs fragment. (#1…
tremble Jun 1, 2022
0c589da
Update extends_documentation_fragment with amazon.aws.boto3 (#1459)
alinabuzachis Oct 5, 2022
d322268
iam_role: drop deprecation (#1636)
markuman Jan 4, 2023
89f4002
Ansible User-Agent identification for community.aws (#1632)
abikouo Jan 10, 2023
ca93178
iam_role - add assume_role_policy_document_raw (#1692)
tremble Feb 2, 2023
b579c77
Cleanup headers and imports (#1738)
tremble Mar 8, 2023
a221a80
Big Black PR (#1784)
tremble Apr 26, 2023
f319079
Bulk migration to Python 3.6 f-strings (#1810)
tremble May 8, 2023
6029f7c
Various ARN handling fixes (#1848)
tremble Jun 26, 2023
3b5c0d0
Mass update of docs and tests (credentials/session tokens) (#1921)
tremble Aug 31, 2023
94f032a
Migrate iam_role and iam_role_info modules from community.aws
abikouo Sep 20, 2023
8596bd6
Apply isort
alinabuzachis Oct 6, 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 @@ -72,6 +72,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 @@ -143,4 +145,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