Skip to content

Commit

Permalink
add placeholder domain names to get services set up
Browse files Browse the repository at this point in the history
  • Loading branch information
jflm authored and samsimpson1 committed Sep 5, 2024
1 parent d06654d commit 9e029f4
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
18 changes: 17 additions & 1 deletion mobile-backend.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@ module "mobile-backend-integration" {
source = "./modules/mobile-backend"

environment = "integration"
hostname = "app.integration.publishing.service.gov.uk"
hostname = "app.integration.govuk.digital"
origin_hostname = "govuk-app-remote-config-integration.s3.eu-west-1.amazonaws.com"
}

module "mobile-backend-staging" {
source = "./modules/mobile-backend"

environment = "staging"
hostname = "app.staging.govuk.digital"
origin_hostname = "govuk-app-remote-config-staging.s3.eu-west-1.amazonaws.com"
}

module "mobile-backend-production" {
source = "./modules/mobile-backend"

environment = "production"
hostname = "app.govuk.digital"
origin_hostname = "govuk-app-remote-config-production.s3.eu-west-1.amazonaws.com"
}
2 changes: 1 addition & 1 deletion modules/mobile-backend/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ locals {
}

resource "fastly_service_vcl" "mobile_backend_service" {
name = "Mobile backend - ${title(var.environment)}"
name = "GOV.UK App mobile backend - ${title(var.environment)}"
http3 = true

domain {
Expand Down

0 comments on commit 9e029f4

Please sign in to comment.