Modify : add secret in Vault
All checks were successful
terraform validation / Terraform (push) Successful in 12s

This commit is contained in:
2025-01-18 14:23:04 +01:00
parent 3b730dd859
commit c9357e490d
4 changed files with 33 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
resource "cloudflare_record" "a-root" {
zone_id = var.cloudflare_zone_id
comment = "Domain verification record A"
content = var.main_server
content = var.ip_server_a
name = "a-root.tips-of-mine.com"
proxied = false
tags = []
@@ -12,7 +12,7 @@ resource "cloudflare_record" "a-root" {
resource "cloudflare_record" "b-root" {
zone_id = var.cloudflare_zone_id
comment = "Domain verification record B"
content = var.main_server
content = var.ip_server_a
name = "@"
proxied = false
tags = []