# =============================================== # Variables for use by main.tf: variable "username" { type = string description = "UltraDNS account username." default = "TODO:ULTRADNS_USERNAME" } variable "password" { type = string description = "UltraDNS account username password." default = "TODO:ULTRADNS_PASSWORD" } variable "account" { type = string description = "UltraDNS account name." default = "TODO:ULTRADNS_ACCOUNT" } variable "new-zone" { type = string description = "New zone to setup in UltraDNS." default = "TODO:NEW_ZONE_NAME" } # =============================================== # TODO: Update the below map with owner name & IP address pairs. variable "a-hosts" { type = map description = "List of a record owners to setup in UltraDNS." default = { "api" = "10.10.10.1", "dev" = "10.10.10.2", "home" = "10.10.10.3", "login" = "10.10.10.4", "mail" = "10.10.10.5", "prod" = "192.168.1.1", "product" = "192.168.1.2", "proxy" = "192.168.1.3", "search" = "192.168.1.4", "stage" = "172.16.1.1", "support" = "172.16.1.2", "www" = "172.16.1.3", "www2" = "172.16.1.4" } } # ===============================================