mirror of
https://github.com/google/nomulus.git
synced 2025-05-13 07:57:13 +02:00
Create canary records in proxy zones
This allows for the creation of records like epp-canary.registr.google. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=199850436
This commit is contained in:
parent
ddf55005c3
commit
db60f0fd12
2 changed files with 9 additions and 36 deletions
|
@ -1,7 +1,14 @@
|
|||
resource "google_dns_managed_zone" "proxy_domain" {
|
||||
name = "proxy-domain"
|
||||
dns_name = "${var.proxy_domain_name}."
|
||||
}
|
||||
|
||||
module "proxy_networking" {
|
||||
source = "./networking"
|
||||
proxy_instance_groups = "${local.proxy_instance_groups}"
|
||||
proxy_ports = "${var.proxy_ports}"
|
||||
proxy_domain = "${google_dns_managed_zone.proxy_domain.name}"
|
||||
proxy_domain_name = "${google_dns_managed_zone.proxy_domain.dns_name}"
|
||||
}
|
||||
|
||||
module "proxy_networking_canary" {
|
||||
|
@ -9,4 +16,6 @@ module "proxy_networking_canary" {
|
|||
proxy_instance_groups = "${local.proxy_instance_groups}"
|
||||
suffix = "-canary"
|
||||
proxy_ports = "${var.proxy_ports_canary}"
|
||||
proxy_domain = "${google_dns_managed_zone.proxy_domain.name}"
|
||||
proxy_domain_name = "${google_dns_managed_zone.proxy_domain.dns_name}"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue