-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvariables.tf
43 lines (36 loc) · 971 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
variable "ami_images" {
default = {
us-east-2 = "ami-1942677c"
}
description = "The machine image to use to create the compute instance resource."
type = "map"
}
variable "availability_zone" {
description = "AZ to place single AZ resoures into"
default = "us-east-2a"
type = "string"
}
variable "availability_zones" {
default = [
"us-east-2a",
"us-east-2b",
"us-east-2c",
]
description = "Availablity zone within the region resoures will be provisioned into."
type = "list"
}
variable "local_ip" {
default = ""
description = "Local IP, used to limit SSH access to the compute instance."
type = "string"
}
variable "region" {
default = "us-east-2"
description = "The geographic region the resources will be provisioned into."
type = "string"
}
variable "ssl_cert" {
default = ""
description = "The ARN to the SSL/TLS certification."
type = "string"
}