forked from ansible-collections/amazon.aws
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wafv2_rule_group - tagging (ansible-collections#1210)
wafv2_rule_group - support for managing tags SUMMARY Add support for returning tags Add support for updating tags Add support for purge_tags Add fix for updating description when rules don't change. Ensure description of rule group is returned when updates happen Split integration tests from full wafv2 tests (full tests are broken) ISSUE TYPE Bugfix Pull Request Feature Pull Request COMPONENT NAME wafv2_rule_group wafv2_rule_group_info ADDITIONAL INFORMATION Reviewed-by: Joseph Torcasso <None> Reviewed-by: Mark Chappell <None>
- Loading branch information
Showing
10 changed files
with
1,201 additions
and
39 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,8 @@ | ||
bugfixes: | ||
- wafv2_rule_group - fix bug where updating just the description did not update the changed state (https://github.com/ansible-collections/community.aws/pull/1210). | ||
- wafv2_rule_group - fix bug where description of resource state was missing when rule groups were updated (https://github.com/ansible-collections/community.aws/pull/1210). | ||
minor_changes: | ||
- wafv2_rule_group - Added support for ``purge_tags`` parameter (https://github.com/ansible-collections/community.aws/pull/1210). | ||
- wafv2_rule_group - Added support for updating tags (https://github.com/ansible-collections/community.aws/pull/1210). | ||
- wafv2_rule_group - Added support for returning tags (https://github.com/ansible-collections/community.aws/pull/1210). | ||
- wafv2_rule_group_info - Added support for returning tags (https://github.com/ansible-collections/community.aws/pull/1210). |
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
cloud/aws | ||
|
||
wafv2_rule_group_info |
11 changes: 11 additions & 0 deletions
11
tests/integration/targets/wafv2_rule_group/defaults/main.yml
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,11 @@ | ||
--- | ||
web_acl_name: '{{ tiny_prefix }}-web-acl' | ||
rule_group_name: '{{ tiny_prefix }}-rule-group' | ||
alb_name: "my-alb-{{ tiny_prefix }}" | ||
tg_name: "my-tg-{{ tiny_prefix }}" | ||
cidr: | ||
main: 10.228.228.0/22 | ||
a: 10.228.228.0/24 | ||
b: 10.228.229.0/24 | ||
c: 10.228.230.0/24 | ||
d: 10.228.231.0/24 |
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 @@ | ||
dependencies: [] |
Oops, something went wrong.