-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
53 lines (49 loc) · 1.05 KB
/
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
variable "name" {
description = "Name of bastion"
type = string
default = ""
}
variable "public_ip" {
description = "Name of bastion"
type = bool
default = true
}
variable "tags" {
description = "Additional tags"
type = map(string)
default = {}
}
variable "subnet" {
description = "Zones to launch our instances into"
type = string
default = ""
}
variable "volume_size" {
description = "volume size"
type = number
}
variable "volume_type" {
description = "volume type"
type = string
default = "gp2"
}
variable "ami_id" {
description = "Name of Launch configuration"
type = string
default = ""
}
variable "key_name" {
description = "Key name of Launch configuration"
type = string
default = ""
}
variable "instance_type" {
description = "Name of Launch configuration"
type = string
default = ""
}
variable "security_groups" {
description = "Name of Launch configuration"
type = list(string)
default = []
}