From 1b7d53f926be864c254db76dfad1dcf2f77fb660 Mon Sep 17 00:00:00 2001 From: Nick Woodward Date: Thu, 15 Feb 2018 13:46:06 -0600 Subject: [PATCH] Update `resource_aws_cognito_user_pool_client` to bind updates to `callback_urls` to the correct param closes #3384 --- aws/resource_aws_cognito_user_pool_client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws/resource_aws_cognito_user_pool_client.go b/aws/resource_aws_cognito_user_pool_client.go index dad4a1312e4c..b5103c42789f 100644 --- a/aws/resource_aws_cognito_user_pool_client.go +++ b/aws/resource_aws_cognito_user_pool_client.go @@ -291,7 +291,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") {