hcornet 586bc14eee
Some checks failed
terraform validation / Terraform (push) Failing after 7s
first sync
2025-01-02 21:13:02 +01:00

19 lines
414 B
HCL

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