update
Some checks failed
terraform validation / Terraform (push) Failing after 8s

This commit is contained in:
2025-01-13 20:43:15 +01:00
parent 45f7421295
commit d76cae78e9
14 changed files with 169 additions and 54 deletions

27
main.tf
View File

@@ -1,19 +1,10 @@
data "ovh_domain_zone" "zone" {
name = var.zone_name
}
resource "cloudflare_zone_settings_override" "this" {
name = "${var.cloudflare_zone}"
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"
}
settings {
always_use_https = "on"
tls_1_3 = "on"
ssl = "strict"
min_tls_version = "1.2"
}
}