Add initial Terraform configuration for Azure and Proxmox resources

This commit is contained in:
2026-03-01 14:16:44 +02:00
parent 44d658745e
commit b11172504d
17 changed files with 869 additions and 0 deletions

21
modules/dns/variables.tf Normal file
View File

@@ -0,0 +1,21 @@
variable "domain_zone_id" {
type = string
}
variable "domain_name" {
type = string
}
variable "pangolin-proxy-v4" {
type = string
}
variable "pangolin-proxy-v6" {
type = string
}
variable "cdn_subdomains" {
description = "Subdomains to serve through Cloudflare proxy (CDN). These get proxied A/AAAA records that override the wildcard."
type = list(string)
default = []
}