Skip to content

Commit

Permalink
fix(ci): update override test domain
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobCoffee committed Sep 5, 2024
1 parent aa4a966 commit 69898f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra/cdn/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ resource "fastly_service_vcl" "python_org" {
connect_timeout = 1000
first_byte_timeout = 30000
between_bytes_timeout = 10000
override_host = var.subdomain == "test.python.org" ? "www.python.org" : null
override_host = var.subdomain == "www.test.python.org" ? "www.python.org" : null
}

backend {
Expand All @@ -52,7 +52,7 @@ resource "fastly_service_vcl" "python_org" {
connect_timeout = 1000
first_byte_timeout = 15000
between_bytes_timeout = 10000
override_host = var.subdomain == "test.python.org" ? "www.python.org" : null
override_host = var.subdomain == "www.test.python.org" ? "www.python.org" : null
}

acl {
Expand Down

0 comments on commit 69898f9

Please sign in to comment.