chore: initialize k3s master iac skeleton
Some checks failed
terraform-plan / plan (push) Has been cancelled

This commit is contained in:
2025-11-07 15:23:27 +08:00
commit 85772b9168
8 changed files with 199 additions and 0 deletions

11
terraform/main.tf Normal file
View File

@@ -0,0 +1,11 @@
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.