diff --git a/services/terraform/remote/service_backup.tf b/services/terraform/remote/service_backup.tf --- a/services/terraform/remote/service_backup.tf +++ b/services/terraform/remote/service_backup.tf @@ -31,6 +31,14 @@ # If this ever fails, we can fallback to blob public URL: # "https://${local.blob_service_domain_name}" }, + { + name = "IDENTITY_SERVICE_ENDPOINT", + value = local.identity_local_url + }, + { + name = "COMM_SERVICES_DISABLE_CSAT_VERIFICATION", + value = local.is_staging ? "false" : "true" + } ] logConfiguration = { "logDriver" = "awslogs" diff --git a/services/terraform/remote/service_blob.tf b/services/terraform/remote/service_blob.tf --- a/services/terraform/remote/service_blob.tf +++ b/services/terraform/remote/service_blob.tf @@ -41,6 +41,14 @@ { name = "BLOB_S3_BUCKET_NAME", value = local.blob_service_s3_bucket + }, + { + name = "IDENTITY_SERVICE_ENDPOINT", + value = local.identity_local_url + }, + { + name = "COMM_SERVICES_DISABLE_CSAT_VERIFICATION", + value = local.is_staging ? "false" : "true" } ] logConfiguration = { diff --git a/services/terraform/remote/service_reports.tf b/services/terraform/remote/service_reports.tf --- a/services/terraform/remote/service_reports.tf +++ b/services/terraform/remote/service_reports.tf @@ -48,6 +48,14 @@ # If this ever fails, we can fallback to blob public URL: # "https://${local.blob_service_domain_name}" }, + { + name = "IDENTITY_SERVICE_ENDPOINT", + value = local.identity_local_url + }, + { + name = "COMM_SERVICES_DISABLE_CSAT_VERIFICATION", + value = local.is_staging ? "false" : "true" + } ] # Don't enable e-mails on staging. secrets = local.is_staging ? [] : [