mirror of
https://github.com/Mic92/nixos-wiki-infra.git
synced 2024-11-23 00:33:10 +01:00
19 lines
456 B
HCL
19 lines
456 B
HCL
resource "netlify_dns_zone" "nixos" {
|
|
site_id = ""
|
|
name = var.netlify_dns_zone
|
|
}
|
|
|
|
resource "netlify_dns_record" "nixos_wiki_a" {
|
|
zone_id = netlify_dns_zone.nixos.id
|
|
hostname = var.domain
|
|
type = "A"
|
|
value = hcloud_server.nixos_wiki.ipv4_address
|
|
}
|
|
|
|
resource "netlify_dns_record" "nixos_wiki_aaaa" {
|
|
zone_id = netlify_dns_zone.nixos.id
|
|
hostname = var.domain
|
|
type = "AAAA"
|
|
value = hcloud_server.nixos_wiki.ipv6_address
|
|
}
|