From 5dec3eff288e0656a7503ffdace97ffe4817e7e3 Mon Sep 17 00:00:00 2001 From: aidenvaines-bjss Date: Mon, 22 Jul 2024 21:53:21 +0100 Subject: [PATCH] fixing a singleton resource to allow for multi deployment --- .../terraform/components/iam/cognito_user_pool_domain.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/components/iam/cognito_user_pool_domain.tf b/infrastructure/terraform/components/iam/cognito_user_pool_domain.tf index 181c6c6d..f27f8d71 100644 --- a/infrastructure/terraform/components/iam/cognito_user_pool_domain.tf +++ b/infrastructure/terraform/components/iam/cognito_user_pool_domain.tf @@ -1,4 +1,4 @@ resource "aws_cognito_user_pool_domain" "main" { user_pool_id = aws_cognito_user_pool.main.id - domain = "nhsnotify" + domain = local.csi }