Files
k3s-master/terraform/main.tf
doudou 85772b9168
Some checks failed
terraform-plan / plan (push) Has been cancelled
chore: initialize k3s master iac skeleton
2025-11-07 15:23:27 +08:00

12 lines
411 B
HCL

provider "vsphere" {
user = var.vsphere_user
password = var.vsphere_password
vsphere_server = var.vsphere_server
# CI pipeline injects sensitive certificates and ignores insecure SSL via TF vars if required.
allow_unverified_ssl = false
}
# Placeholder resource block intentionally omitted.
# Actual VM cloning, tagging, and network configuration will be added in follow-up stories.