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

DNM - Migrate modules ec2_vpc_nacl,ec2_vpc_nacl_info and tests #2339

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
85148d5
Initial commit
jillr Mar 2, 2020
723cd96
migration test cleanup
jillr Mar 3, 2020
9a2a23c
Rename collection (#12)
jillr Mar 25, 2020
92264df
Remove METADATA and cleanup galaxy.yml (#70)
jillr May 19, 2020
df777de
Collections related fixes for CI (#96)
jillr Jun 16, 2020
9f729dd
Update Examples with FQCN (#67)
Akasurde Jun 16, 2020
cac0d76
Update module_utils paths to remove aws subdir (#23)
flowerysong Jun 16, 2020
a3e7a16
Update docs (#99)
jillr Jun 17, 2020
62ac7a3
Docs: sanity fixes (#133)
Akasurde Jul 15, 2020
69ae7f2
Mark a number of integration tests as unstable based on high failure …
tremble Jul 27, 2020
7d3e487
Bulk migration to fail_json_aws (#361)
tremble Jan 27, 2021
7fc8983
Cleanup - use is_boto3_error_(message|code) (#268)
tremble Feb 5, 2021
921c6e3
Yet more integration test aliases file cleanup (#431)
tremble Feb 21, 2021
a4fbafe
ec2_vpc_nacl: add IPv6 support (#398)
boutetnico Mar 8, 2021
0d0122b
Update the default module requirements from python 2.6/boto to python…
tremble May 6, 2021
4bfd7d5
Remove shippable references from repo
jillr Apr 29, 2021
fa61043
Remove deprecated "facts" aliases (#814)
jillr Dec 2, 2021
385a228
Integration test dependency cleanup (#1086)
tremble Apr 22, 2022
9beb607
ec2_vpc_nacl - Add support for purge_tags (#1189)
tremble Jun 2, 2022
0a40d32
Minor sanity test fixes. (#1410)
tremble Aug 15, 2022
68dae23
Update extends_documentation_fragment with amazon.aws.boto3 (#1459)
alinabuzachis Oct 5, 2022
d027327
Fix non-matching defaults in docs (#1576)
felixfontein Nov 2, 2022
df40324
Ansible User-Agent identification for community.aws (#1632)
abikouo Jan 10, 2023
70abbf1
Cleanup headers and imports (#1738)
tremble Mar 8, 2023
a08c97e
Big Black PR (#1784)
tremble Apr 26, 2023
92c73bd
Bulk migration to Python 3.6 f-strings (#1810)
tremble May 8, 2023
bc7d15e
Mass update of docs and tests (credentials/session tokens) (#1921)
tremble Aug 31, 2023
c08a377
Apply isort and flynt (#1962)
tremble Oct 17, 2023
fda6244
ansible-lint (documentation) cleanup for plugins/ (#2036)
tremble Jan 5, 2024
fd0f652
Prepare modules ec2_vpc_nacl and ec2_vpc_nacl_info for promotion (#2159)
abikouo Oct 14, 2024
fe4eab6
update meta/runtime.yml, modules and tests
abikouo Oct 15, 2024
88363d1
add changelog file
abikouo Oct 15, 2024
5e4a6f9
Corrected spelling of word (#2306)
Figrol Oct 16, 2024
fc3e13b
Fix isort issue
abikouo Oct 16, 2024
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
major_changes:
- ec2_vpc_nacl - 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.ec2_vpc_nacl`` (https://github.com/ansible-collections/amazon.aws/pull/2339).
- ec2_vpc_nacl_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.ec2_vpc_nacl_info`` (https://github.com/ansible-collections/amazon.aws/pull/2339).
12 changes: 7 additions & 5 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ action_groups:
- ec2_vpc_endpoint_service_info
- ec2_vpc_igw
- ec2_vpc_igw_info
- ec2_vpc_nacl
- ec2_vpc_nacl_info
- ec2_vpc_nat_gateway
- ec2_vpc_nat_gateway_info
- ec2_vpc_net
Expand Down Expand Up @@ -164,14 +166,14 @@ plugin_routing:
rds_param_group:
redirect: amazon.aws.rds_instance_param_group
deprecation:
removal_version: 10.0.0
warning_text: >-
rds_param_group has been renamed to rds_instance_param_group.
Please update your tasks.
removal_version: 10.0.0
warning_text: >-
rds_param_group has been renamed to rds_instance_param_group.
Please update your tasks.
lookup:
aws_ssm:
# Deprecation for this alias should not *start* prior to 2024-09-01
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
2 changes: 1 addition & 1 deletion plugins/modules/ec2_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
callback (Linux only).
- For Windows instances, to enable remote access via Ansible set O(aap_callback.windows) to V(true), and
optionally set an admin password.
- If using O(aap_callback.windows) and O(aap_callback.set_password), callback ton Ansible Automation Platform will not
- If using O(aap_callback.windows) and O(aap_callback.set_password), callback to Ansible Automation Platform will not
be performed but the instance will be ready to receive winrm connections from Ansible.
- Mutually exclusive with O(user_data).
type: dict
Expand Down
Loading
Loading