Go-based network automation with YANG models, gRPC, Ansible, Terraform, and Kubernetes integration. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
306 B
HCL
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
|
|
}
|