Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions infra/environments/prod/foundry.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
# record, writes CNAME → <tunnel-id>.cfargotunnel.com within
# its --interval (1m default).
# d. Traffic starts landing on foundry within CF TTL.
# 5. Bake. Add each remaining hostname (sentinel-v5 / mapache / vault)
# in a follow-up PR — copy gr-prod/manifests/<svc>/ into
# 5. Bake. Add each remaining hostname (mapache / vault) in a
# follow-up PR — copy gr-prod/manifests/<svc>/ into
# gr-foundry/manifests/<svc>/ with two file changes (ingress.yaml →
# Traefik + external-dns annotation, postgres.yaml → public
# hostname). No terraform edit needed.
Expand Down
12 changes: 2 additions & 10 deletions infra/environments/prod/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,8 @@ resource "cloudflare_dns_record" "gr_clickhouse" {
# Cloudflare allows one entrypoint ruleset per (zone, phase). The
# argocd rule was originally created via the dashboard, which Cloudflare
# stores as an http_config_settings ruleset under the hood. We import
# that existing ruleset and add the sentinel-v5 rule alongside it.
# that existing ruleset and manage the remaining per-hostname rules
# alongside it.
resource "cloudflare_ruleset" "ssl_overrides" {
zone_id = data.cloudflare_zone.gauchoracing.id
name = "Per-hostname SSL overrides"
Expand All @@ -227,15 +228,6 @@ resource "cloudflare_ruleset" "ssl_overrides" {
ssl = "strict"
}
},
{
description = "sentinel-v5-strict-mode"
expression = "(http.host eq \"sentinel-v5.gauchoracing.com\")"
action = "set_config"
enabled = true
action_parameters = {
ssl = "strict"
}
},
{
description = "mapache-strict-mode"
expression = "(http.host eq \"mapache.gauchoracing.com\")"
Expand Down
2 changes: 1 addition & 1 deletion infra/modules/argocd/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ variable "domain" {
variable "oidc_issuer" {
description = "OIDC issuer for SSO. Must byte-match Sentinel's ISSUER and the iss claim in its tokens."
type = string
default = "https://sentinel-v5.gauchoracing.com"
default = "https://sso.gauchoracing.com"
}

variable "oidc_client_id" {
Expand Down
Loading