You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
614 B
27 lines
614 B
### wg.sudo.is |
|
|
|
## delegated to digital ocean |
|
|
|
resource "digitalocean_domain" "wg-sudo-is" { |
|
name = "wg.sudo.is" |
|
ip_address = local.fsn_lb_ip |
|
} |
|
|
|
# mainframe test record |
|
resource "digitalocean_record" "mainframe-wg-sudo-is" { |
|
domain = digitalocean_domain.wg-sudo-is.name |
|
type = "A" |
|
name = "mainframe" |
|
value = "10.102.47.128" |
|
ttl = 60 |
|
} |
|
|
|
# old, flattened dns record on sudo.is |
|
resource "cloudflare_record" "broker-vpn-sudois" { |
|
zone_id = cloudflare_zone.sudois.id |
|
type = "CNAME" |
|
name = "broker.vpn" |
|
value = "ber0.sudo.is" |
|
proxied = false |
|
ttl = 60 |
|
}
|
|
|