mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-22 16:23:25 +01:00
10 lines
194 B
HCL
10 lines
194 B
HCL
variable "zone_id" {}
|
|
|
|
resource "cloudflare_record" "server" {
|
|
zone_id = var.zone_id
|
|
name = "your-dns-name"
|
|
value = civo_instance.server.public_ip
|
|
type = "A"
|
|
proxied = false
|
|
}
|