-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
service/sns: Fix schema error #13437
Conversation
Oi! This resource was actually the impetus for the |
@bflad sure! |
@appilon you da best. |
a926670
to
61c6bc6
Compare
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 wouldn't worry about the nits for now, LGTM 🚀
Output from acceptance testing:
--- PASS: TestAccAWSSNSTopic_basic (11.02s)
--- PASS: TestAccAWSSNSTopic_deliveryStatus (30.59s)
--- PASS: TestAccAWSSNSTopic_encryption (16.90s)
--- PASS: TestAccAWSSNSTopic_name (13.06s)
--- PASS: TestAccAWSSNSTopic_namePrefix (12.43s)
--- PASS: TestAccAWSSNSTopic_policy (12.35s)
--- PASS: TestAccAWSSNSTopic_tags (23.13s)
--- PASS: TestAccAWSSNSTopic_withDeliveryPolicy (12.63s)
--- PASS: TestAccAWSSNSTopic_withFakeIAMRole (127.66s)
--- PASS: TestAccAWSSNSTopic_withIAMRole (28.00s)
} | ||
// update mutable attributes | ||
if d.HasChange("application_failure_feedback_role_arn") { | ||
_, v := d.GetChange("application_failure_feedback_role_arn") |
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.
Nit: These will be fixed later on with #12085, but only using the second value of d.GetChange()
can be replaced with d.Get()
. This is no different than before so it is fine to leave for now. 👍
return err | ||
} | ||
} | ||
if d.HasChange("arn") { |
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.
Nit: arn
is not actually configurable, but presumably it was included in the previous mapping so it would get picked up for read. This is no different than before so it is fine to leave for now. 👍
This has been released in version 2.64.0 of the Terraform AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template for triage. Thanks! |
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! |
Community Note
Relates #13312
Release note for CHANGELOG:
Output from acceptance testing: