kedge/terraform/modules/dns/variables.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

15 lines
312 B
HCL

variable "zone_id" {
description = "Cloudflare zone ID"
type = string
}
variable "anchor_hostname" {
description = "DNS hostname for the cloud anchor"
type = string
default = "anchor"
}
variable "anchor_ip" {
description = "Public IP of the cloud anchor"
type = string
}