-
Notifications
You must be signed in to change notification settings - Fork 397
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ec2_vpc_nacl - Add support for purge_tags (#1189)
ec2_vpc_nacl - Add support for purge_tags SUMMARY Add support to ec2_vpc_nacl for purge_tags Use ec2 helper for tagging Use TaggingSpecifications on creation ISSUE TYPE Feature Pull Request COMPONENT NAME ec2_vpc_nacl ADDITIONAL INFORMATION Changelog Integration tests Reviewed-by: Joseph Torcasso <None>
- Loading branch information
Showing
10 changed files
with
740 additions
and
518 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
minor_changes: | ||
- ec2_vpc_nacl - add support for ``purge_tags`` parameter (https://github.com/ansible-collections/community.aws/pull/1189). | ||
- ec2_vpc_nacl - ``resource_tags`` has been added as an alias for the ``tags`` parameter (https://github.com/ansible-collections/community.aws/pull/1189). | ||
- ec2_vpc_nacl - the default value for ``tags`` has been updated, to remove all tags the ``tags`` parameter must be explicitly set to the empty dict ``{}`` and ``purge_tags`` to ``True`` (https://github.com/ansible-collections/community.aws/pull/1189). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
# https://github.com/ansible-collections/community.aws/issues/153 | ||
unstable | ||
|
||
cloud/aws | ||
|
||
ec2_vpc_nacl_info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
vpc_name: '{{ resource_prefix }}-ec2-vpc-nacl' | ||
nacl_name: '{{ resource_prefix }}-ec2-vpc-nacl' | ||
subnet_name: '{{ resource_prefix }}-ec2-vpc-nacl' | ||
vpc_cidr: '10.{{ 256 | random(seed=resource_prefix) }}.0.0/16' | ||
subnet_1: '10.{{ 256 | random(seed=resource_prefix) }}.1.0/24' | ||
subnet_2: '10.{{ 256 | random(seed=resource_prefix) }}.2.0/24' | ||
subnet_3: '10.{{ 256 | random(seed=resource_prefix) }}.3.0/24' | ||
subnet_4: '10.{{ 256 | random(seed=resource_prefix) }}.4.0/24' | ||
|
||
vpc_ipv6_cidr: '10.{{ 256 | random(seed=resource_prefix) }}.5.0/25' | ||
vpc_ipv6_name: '{{ vpc_name }}-ipv6' |
Oops, something went wrong.