Skip to content

Commit

Permalink
Fix provider_arns assignment in api_gateway.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
FloRul committed Feb 25, 2024
1 parent 91a9b54 commit 326f612
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/api_gateway.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ resource "aws_api_gateway_authorizer" "this" {
name = "${var.api_name}-authorizer"
rest_api_id = aws_api_gateway_rest_api.this.id
type = "COGNITO_USER_POOLS"
provider_arns = [data.aws_cognito_user_pools.api_cognito.arns]
provider_arns = data.aws_cognito_user_pools.api_cognito.arns
}


Expand Down

0 comments on commit 326f612

Please sign in to comment.