From 929fac540f76fd9aa53d0fc867eadc80fe85cd98 Mon Sep 17 00:00:00 2001 From: Al West Date: Tue, 16 Jan 2024 11:17:41 +0000 Subject: [PATCH] Reduce origins to 1 --- Terraform/variables.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Terraform/variables.tf b/Terraform/variables.tf index 2228c19b..7ec2e11b 100644 --- a/Terraform/variables.tf +++ b/Terraform/variables.tf @@ -892,11 +892,11 @@ variable "hostname" { variable "origins" { type = map(string) default = { - Dev = "www.dev.develop-child-family-social-work-career.education.gov.uk,dev.develop-child-family-social-work-career.education.gov.uk" - Test = "www.test.develop-child-family-social-work-career.education.gov.uk,test.develop-child-family-social-work-career.education.gov.uk" + Dev = "www.dev.develop-child-family-social-work-career.education.gov.uk" + Test = "www.test.develop-child-family-social-work-career.education.gov.uk" Load-Test = "20.107.65.156.nip.io" - Pre-Prod = "www.pre-proddevelop-child-family-social-work-career.education.gov.uk,pre-proddevelop-child-family-social-work-career.education.gov.uk" - Prod = "www.develop-child-family-social-work-career.education.gov.uk,develop-child-family-social-work-career.education.gov.uk" + Pre-Prod = "www.pre-prod.develop-child-family-social-work-career.education.gov.uk" + Prod = "www.develop-child-family-social-work-career.education.gov.uk" } description = "Origins for Grafana" }