-
Notifications
You must be signed in to change notification settings - Fork 9.2k
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
New Resource: aws_waf_regex_pattern_set #3913
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some minor things below but nothing blocking merge. 👍
Delete: resourceAwsWafRegexPatternSetDelete, | ||
|
||
Schema: map[string]*schema.Schema{ | ||
"name": &schema.Schema{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor nitpick: Extraneous &schema.Schema
here and below
|
||
resp, err := conn.GetRegexPatternSet(params) | ||
if err != nil { | ||
if isAWSErr(err, "WAFNonexistentItemException", "") { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see this is related to an upstream SDK issue you filed 😄 aws/aws-sdk-go#1856
Maybe we should note there's a constant available that doesn't seem to include that prefix: waf.ErrCodeNonexistentItemException
in case a future traveler might go fixing this?
oldPatterns := d.Get("regex_pattern_strings").(*schema.Set).List() | ||
if len(oldPatterns) > 0 { | ||
noPatterns := []interface{}{} | ||
err := updateWafRegexPatternSetPatternStrings(d.Id(), oldPatterns, noPatterns, conn) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Out of my own curiosity, what error does it throw if you do not empty the patterns before attempting to delete? Maybe we should include it as a comment?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WAFNonEmptyEntityException: The referenced entity is not empty.
I feel like it's a matter of being a good citizen and cleaning up after myself, rather than avoiding an error 😝
return updates | ||
} | ||
|
||
func sliceContainsString(slice []interface{}, s string) (int, bool) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe this should be moved into utils.go
or helper/X
?
e2dc307
to
8064038
Compare
8064038
to
98dae17
Compare
Thanks for the review, acceptance tests still passing:
|
This has been released in version 1.13.0 of the AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks! |
Test results