Skip to content

Commit 8c40bbe

Browse files
authored
Merge pull request #67 from khanh-ph/release/3.2.0
Release version 3.2.0
2 parents f333824 + aee236f commit 8c40bbe

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

example.tfvars

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ env_name = "demo"
77
# Proxmox VE
88
########################################################################
99
## Specify Proxmox VE API URL, token details, and Proxmox host where VM will be hosted.
10+
## If you've not created an API token, please refer to this guide: https://registry.terraform.io/providers/Telmate/proxmox/2.9.14/docs
1011
pm_api_url = "https://your-proxmox-url/api"
1112
pm_api_token_id = "your-api-token-id"
1213
pm_api_token_secret = "your-api-token-secret"
@@ -42,6 +43,16 @@ ssh_private_key = "put-base64-encoded-private-key-here"
4243
# Replace `2` with the maximum cores that your Proxmox VE server can give to a VM.
4344
vm_max_vcpus = 2
4445
# Specify the VM specifications for the Kubernetes control plane.
45-
vm_k8s_control_plane = "{ node_count = 1, vcpus = 2, memory = 2048, disk_size = 20 }"
46+
vm_k8s_control_plane = {
47+
node_count = 1
48+
vcpus = 2
49+
memory = 2048
50+
disk_size = 20
51+
}
4652
# Specify the VM specifications for the Kubernetes worker nodes.
47-
vm_k8s_worker = "{ node_count = 3, vcpus = 2, memory = 3072, disk_size = 20 }"
53+
vm_k8s_worker = {
54+
node_count = 3
55+
vcpus = 2
56+
memory = 3072
57+
disk_size = 20
58+
}

0 commit comments

Comments
 (0)