kedge/terraform/modules/dns/main.tf
Tyler King 6058e62348 Initial commit: Kedge network automation platform
Go-based network automation with YANG models, gRPC, Ansible,
Terraform, and Kubernetes integration.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-26 12:09:30 -05:00

17 lines
306 B
HCL

terraform {
required_providers {
cloudflare = {
source = "cloudflare/cloudflare"
version = "~> 4.0"
}
}
}
resource "cloudflare_record" "anchor" {
zone_id = var.zone_id
name = var.anchor_hostname
content = var.anchor_ip
type = "A"
ttl = 300
proxied = false
}