-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
44 lines (37 loc) · 826 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
variable "aws_access_keys" {
type = "map"
description = "AWS Access Keys for terraform deployment"
default = {
access_key = ""
secret_key = ""
region = "us-east-1"
}
}
variable "subnets" {
type = "map"
description = "Available subnets in this deployment"
default = {
subnet01 = "subnet-16ca4a71"
subnet02 = "subnet-2e2e7e64"
}
}
variable "ami_id" {
type = string
description = "Ubuntu AMI"
default = "ami-04763b3055de4860b"
}
variable "instance_type" {
type = string
description = "The instance type of the node"
default = "t2.large"
}
variable "key_name" {
type = string
description = "Keypair name"
default = "k8s-test"
}
variable "user_data_file" {
type = string
description = "User data to install rancher in HA"
default = "scripts/user_data.tpl"
}