-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
55 lines (45 loc) · 925 Bytes
/
variables.tf
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
43
44
45
46
47
48
49
50
51
52
53
54
variable "cluster_name" {
type = string
default = "demo-cluster"
}
variable "aws_region" {
type = string
default = "us-east-1"
}
variable "server_instance_type" {
type = string
default = "t3a.medium"
}
variable "agent_instance_type" {
type = string
default = "t3a.large"
}
variable "ami_owner" {
type = string
default = "013907871322" #SUSE
}
variable "ami_filter_name" {
type = string
default = "suse-sles-15-sp3"
}
variable "rke2_version" {
type = string
default = "v1.22.5+rke2r1"
}
variable "tags" {
type = map
default = {
"terraform" = "true",
"env" = "cloud-enabled",
}
}
variable "install_rancher" {
description = "Install Rancher to deployed cluster"
type = bool
default = false
}
variable "rancher_url" {
description = "Rancher Access URL. Defaults to loadbalancer URL."
type = string
default = ""
}