-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_vars.tf
41 lines (35 loc) · 787 Bytes
/
_vars.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
variable "name" {
description = "The name of the cluster to manage."
type = string
}
variable "vpc_id" {
description = "VPC to put resources in."
type = string
}
variable "ec2_settings" {
description = "EC2-specific settings, when using EC2 as default provider."
type = object({
subnets = list(string)
instance_type = string
instance_key_name = string
max_instances_count = number
})
default = null
}
variable "ingress_cidr_blocks" {
type = map(any)
default = {}
}
variable "ingress_security_groups" {
type = map(any)
default = {}
}
variable "extra_security_groups" {
type = list(string)
default = []
}
variable "use_spot" {
description = "Use Fargate Spot instead of Fargate. EC2 not supported yet."
type = bool
default = false
}