-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
74 lines (57 loc) · 937 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# provider
variable "aws-region" {
type = string
}
#vpc
variable "vpc_name" {
type = string
}
variable "vpc_cidr" {
type = string
}
variable "gw_name" {
type = string
}
#subnets
variable "subnet_cidr" {
type = list
}
variable "subnet_name" {
type = list
}
variable "az" {
type = list
}
#nat
variable "nat_name" {
type = string
}
#public rt
variable "pub-wanted-cidr" {
type = string
}
variable "pub-table-name" {
type = string
}
#private rt
variable "pri-wanted-cidr" {
type = string
}
variable "pri-table-name" {
type = string
}
#security-group
variable "ingress_cidr_blocks" {}
# emr cluster
variable "name" {}
variable "release_label" {}
variable "applications" {
type = list
}
variable "key_name" {}
variable "master_instance_type" {}
variable "master_ebs_size" {}
variable "core_instance_type" {}
variable "core_instance_count" {}
variable "core_ebs_size" {}
variable "bucket_name" {}