-
Notifications
You must be signed in to change notification settings - Fork 5
/
vars.tf
101 lines (85 loc) · 2.06 KB
/
vars.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
variable "ACCESS_KEY" {
description = "AWS Access Key"
type = string
default = "" #Replace
}
variable "SECRET_ACCESS_KEY" {
description = "AWS Secret Access Key"
type = string
default = "" #Replace
}
variable "rancher_api_url" {
description = "Rancher API Url"
type = string
default = "" #Replace
}
variable "rancher2_access_key" {
description = "Rancher2 Access Key"
type = string
default = "" #Replace
}
variable "rancher2_secret_key" {
description = "Rancher2 Secret Key"
type = string
default = "" #Replace
}
variable "ami" {
description = "an EC2 AMI Id"
type = string
default = "" #Replace
}
variable "region" {
description = "AWS Region"
type = string
default = "" #Replace
}
variable "security_group_id" {
description = "Security Group id for EKS Clusters"
type = string
default = "" #Replace
}
variable "security_group_name" {
description = "Security Group name for EC2 Clusters"
type = string
default = "" #Replace
}
variable "subnet_id_a" {
description = "VPC Subnet ID"
type = string
default = "" #Replace
}
variable "subnet_id_b" {
description = "VPC Subnet ID"
type = string
default = "" #Replace
}
variable "subnet_id_c" {
description = "VPC Subnet ID"
type = string
default = "" #Replace
}
variable "vpc_id" {
description = "VPC ID"
type = string
default = "" #Replace
}
variable "az" {
description = "Availability Zone"
type = string
default = "a"
}
variable "control_plane_instance_type" {
description = "EC2 Instance Type for master instances"
type = string
default = "" #Replace
}
variable "worker_instance_type" {
description = "EC2 Instance Type for worker instances"
type = string
default = "" #Replace
}
variable "docker_install_sh" {
description = "Rancher Docker install script URL 20.10 version"
type = string
default = "https://releases.rancher.com/install-docker/20.10.sh"
}