| 1234567891011121314151617181920212223242526272829303132333435 |
- variable "master_ip" {
- description = "Master node IP address"
- type = string
- default = "47.113.186.215"
- }
- variable "master_password" {
- description = "Root password for master node"
- type = string
- default = "Xs261617"
- }
- variable "worker_ips" {
- description = "Worker node IP addresses"
- type = list(string)
- default = ["101.201.78.54", "47.120.61.39"]
- }
- variable "worker_password" {
- description = "Root password for worker nodes"
- type = string
- default = "Xs261617"
- }
- variable "k3s_version" {
- description = "k3s version to install"
- type = string
- default = "v1.35.0+k3s1"
- }
- variable "k3s_download_url" {
- description = "URL to download k3s binary"
- type = string
- default = "http://download.9981.tech/k3s-v1.35.0%2Bk3s1"
- }
|