Skip to content

Commit 58a8970

Browse files
committed
fix: take app_id_client_regex from user_pool_config (#35)
1 parent c41b990 commit 58a8970

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ resource "aws_appsync_graphql_api" "this" {
5151
content {
5252
default_action = var.user_pool_config["default_action"]
5353
user_pool_id = var.user_pool_config["user_pool_id"]
54-
app_id_client_regex = lookup(var.openid_connect_config, "app_id_client_regex", null)
55-
aws_region = lookup(var.openid_connect_config, "aws_region", null)
54+
app_id_client_regex = lookup(var.user_pool_config, "app_id_client_regex", null)
55+
aws_region = lookup(var.user_pool_config, "aws_region", null)
5656
}
5757
}
5858

0 commit comments

Comments
 (0)