Skip to content

Commit

Permalink
Update static_dns versions (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
klejejs authored Sep 30, 2024
1 parent 144a93b commit 3fb6b0f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion static_dns/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ terraform {
}
}

required_version = "= 1.9.6"

required_providers {
cloudflare = {
source = "cloudflare/cloudflare"
version = "~> 3.0"
version = "~> 4.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion static_dns/record._checkdns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
resource "cloudflare_record" "_checkdns" {
zone_id = data.cloudflare_zone.dns_zone.id
name = "_checkdns"
value = "1.1.1.1"
content = "1.1.1.1"
type = "A"
ttl = 1
proxied = false
Expand Down

0 comments on commit 3fb6b0f

Please sign in to comment.