Skip to content

Commit

Permalink
hashicorp#931 convert to string
Browse files Browse the repository at this point in the history
  • Loading branch information
hussfelt committed Dec 12, 2017
1 parent a288769 commit 7da17fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aws/resource_aws_ses_identity_notification.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ func resourceAwsSesNotificationSet(d *schema.ResourceData, meta interface{}) err

func resourceAwsSesNotificationRead(d *schema.ResourceData, meta interface{}) error {
conn := meta.(*AWSClient).sesConn
notification := d.Get("notification_type").(*schema.Set)
identity := d.Get("identity").(*schema.Set)
notification := d.Get("notification_type").(string)
identity := d.Get("identity").(string)

getOpts := &ses.GetIdentityNotificationAttributesInput{
Identities: []*string{aws.String(identity)},
Expand Down

0 comments on commit 7da17fe

Please sign in to comment.