generated from terraform-module/terraform-module-blueprint
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
35 lines (30 loc) · 1004 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
variable "create_ecs" {
description = "Controls if ECS should be created"
type = bool
default = true
}
variable "name" {
description = "Name to be used on all the resources as identifier, also the name of the ECS cluster"
type = string
default = null
}
variable "capacity_providers" {
description = "List of short names of one or more capacity providers to associate with the cluster. Valid values also include FARGATE and FARGATE_SPOT."
type = list(string)
default = []
}
variable "default_capacity_provider_strategy" {
description = "The capacity provider strategy to use by default for the cluster. Can be one or more."
type = list(map(any))
default = []
}
variable "container_insights" {
description = "Controls if ECS Cluster has container insights enabled"
type = bool
default = false
}
variable "tags" {
description = "A map of tags to add to ECS Cluster"
type = map(string)
default = {}
}