Skip to content

Commit

Permalink
hashicorp#931 Force new resource on these attributes as updating it c…
Browse files Browse the repository at this point in the history
…ould create situations where the old notifications still exists
  • Loading branch information
hussfelt committed Apr 1, 2018
1 parent 13e39ee commit 32d15fb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions aws/resource_aws_ses_identity_notification.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ func resourceAwsSesNotification() *schema.Resource {
"notification_type": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: ValidateFunc: validation.StringInSlice([]string{
ses.NotificationTypeBounce,
ses.NotificationTypeComplaint,
Expand All @@ -37,6 +38,7 @@ func resourceAwsSesNotification() *schema.Resource {
"identity": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: validation.NoZeroValues,
},
},
Expand Down

0 comments on commit 32d15fb

Please sign in to comment.