first sync
Some checks failed
terraform validation / Terraform (push) Failing after 7s

This commit is contained in:
2025-01-02 21:13:02 +01:00
parent abc97e8a03
commit 586bc14eee
4 changed files with 63 additions and 0 deletions

19
main.tf
View File

@@ -0,0 +1,19 @@
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"
}