forked from rancher/quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfvars.example
42 lines (28 loc) · 1.08 KB
/
terraform.tfvars.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# AWS access key used to create infrastructure
aws_access_key = ""
# AWS secret key used to create AWS infrastructure
aws_secret_key = ""
# Admin password to use for Rancher server bootstrap
rancher_server_admin_password = ""
# Add a windows node to the workload cluster
add_windows_node = false
# AWS region used for all resources
aws_region = "us-east-1"
# AWS session token used to create AWS infrastructure
aws_session_token = ""
# Version of cert-manager to install alongside Rancher (format: 0.0.0)
cert_manager_version = "1.5.3"
# Docker version to install on nodes
docker_version = "19.03"
# Instance type used for all EC2 instances
instance_type = "t3a.medium"
# Prefix added to names of all resources
prefix = "quickstart"
# Kubernetes version to use for Rancher server cluster
rancher_kubernetes_version = "v1.21.8+k3s1"
# Rancher server version (format: v0.0.0)
rancher_version = "v2.6.3"
# Instance type used for all EC2 windows instances
windows_instance_type = "t3a.large"
# Kubernetes version to use for managed workload cluster
workload_kubernetes_version = "v1.20.6-rancher1-1"