locals.tf 222 B

12345678910
  1. locals {
  2. # Endpoints that can resolve the private domain
  3. inbound_resolver_endpoints = {
  4. prod = ["10.40.0.198", "10.40.0.64"],
  5. test = ["10.20.0.119", "10.20.0.211"],
  6. common = []
  7. }[var.environment]
  8. }