Skip to content

Commit

Permalink
Merge pull request #3404 from nick-woodward/master
Browse files Browse the repository at this point in the history
Update `resource_aws_cognito_user_pool_client` to bind updates to `callback_urls` to the correct param
  • Loading branch information
bflad authored Mar 15, 2018
2 parents 9489773 + 1b7d53f commit 4efc50b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/resource_aws_cognito_user_pool_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ func resourceAwsCognitoUserPoolClientUpdate(d *schema.ResourceData, meta interfa
}

if d.HasChange("callback_urls") {
params.ReadAttributes = expandStringList(d.Get("callback_urls").([]interface{}))
params.CallbackURLs = expandStringList(d.Get("callback_urls").([]interface{}))
}

if d.HasChange("default_redirect_uri") {
Expand Down

0 comments on commit 4efc50b

Please sign in to comment.