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

This commit is contained in:
2025-01-13 20:31:30 +01:00
parent 644d61291d
commit 5575ce52de
5 changed files with 57 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" "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"
}