Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
rocketnova committed Aug 7, 2024
1 parent 3645cb0 commit fa6a8f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ data "aws_cognito_user_pools" "existing_user_pools" {
}

data "aws_cognito_user_pool_clients" "existing_user_pool_clients" {
user_pool_id = tolist(data.aws_cognito_user_pools.existing_user_pools[0].ids)[0]
user_pool_id = tolist(data.aws_cognito_user_pools.existing_user_pools.ids)[0]
}

data "aws_ssm_parameter" "existing_user_pool_client_secret" {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
output "access_policy_arn" {
description = "The arn for the IAM access policy granting access to the user pool"
value = data.aws_iam_policy.existing_cognito_access.arn
value = data.aws_iam_policy.existing_cognito_access_policy.arn
}

output "client_id" {
Expand Down

0 comments on commit fa6a8f1

Please sign in to comment.