hcornet 5575ce52de
Some checks failed
terraform validation / Terraform (push) Failing after 13s
first sync
2025-01-13 20:31:30 +01:00

20 lines
419 B
HCL

data "ovh_domain_zone" "zone" {
name = var.zone_name
}
resource "ovh_domain_zone_record" "dagobah" {
zone = data.ovh_domain_zone.zone.id
subdomain = "tagobah"
fieldtype = "A"
ttl = 60
target = "82.66.77.254"
}
resource "ovh_domain_zone_record" "tatooine" {
zone = data.ovh_domain_zone.zone.id
subdomain = "tatooine"
fieldtype = "A"
ttl = 60
target = "82.66.77.254"
}