-
Notifications
You must be signed in to change notification settings - Fork 343
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for ipv6 addresses (#430)
Add support for ipv6 addresses SUMMARY Allow amazon.aws.aws_service_ip_ranges to return only IPv6 addresses with setting ipv6_prefixes=True ISSUE TYPE Feature Pull Request COMPONENT NAME amazon.aws.aws_service_ip_ranges ADDITIONAL INFORMATION vars: rt53_ranges: "{{ lookup('aws_service_ip_ranges', region='us-west-2', service='ROUTE53_HEALTHCHECKS', ipv6_prefix=True, wantlist=True) }}" tasks: - name: "use list return option and iterate as a loop" debug: msg="{% for x in rt53_ranges %}{{ x }} {% endfor %}" # "2600:1f14:7ff:f800::/56,2600:1f14:fff:f800::/56" Closes #438 Reviewed-by: None <None> Reviewed-by: Mark Chappell <None> Reviewed-by: None <None>
- Loading branch information
1 parent
e68f0e1
commit 71de845
Showing
3 changed files
with
63 additions
and
5 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: | ||
- aws_service_ip_ranges - add new option ``ipv6_prefixes`` | ||
to get only IPV6 addresses and prefixes for Amazon services | ||
(https://github.com/ansible-collections/amazon.aws/pull/430) |
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