-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
57 lines (47 loc) · 1.2 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
53
54
55
56
57
### input variables
### network
variable "subnets" {
description = "The list of subnet IDs to deploy your EMR cluster"
type = list(string)
}
variable "additional_primary_security_group" {
description = "Additional security group for primary nodes"
default = null
}
variable "additional_slave_security_group" {
description = "Additional security group for slave nodes"
default = null
}
### emr cluster
variable "cluster" {
description = "EMR cluster control plane configuration"
default = null
}
variable "primary_node_groups" {
description = "EMR primary node groups configuration"
default = {}
}
variable "core_node_groups" {
description = "EMR core node groups configuration"
default = {}
}
variable "task_node_groups" {
description = "EMR task node groups configuration"
default = {}
}
variable "custom_scale_policy" {
description = "Path to custom rendered scaling policy"
default = ""
}
### description
variable "name" {
description = "The logical name of the module instance"
type = string
default = null
}
### tags
variable "tags" {
description = "The key-value maps for tagging"
type = map(string)
default = {}
}