# Production overrides. Only the keys present here change; everything else falls back to the
# defaults in variables.tf. Note that `subnets` is a whole-value override, not a merge — the
# staging app-b subnet does not survive.
environment    = "prod"
region         = "eu-example-1"
instance_count = 8
instance_size  = "large"

subnets = {
  app-a = {
    cidr = "10.30.1.0/24"
    zone = "a"
  }
}

tags = {
  owner       = "example-platform-team"
  tier        = "critical"
  cost_center = "CC-4821"
}
