generated from geekcell/terraform-aws-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
42 lines (36 loc) · 1000 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
## NAMING
variable "name" {
description = "Name of the ECS cluster."
type = string
}
variable "tags" {
description = "Tags to add to the ECS cluster."
default = {}
type = map(any)
}
## CLUSTER
variable "enable_container_insights" {
description = "Enable CloudWatch Container Insights for the cluster."
default = true
type = bool
}
variable "encrypt_execute_command_session" {
description = "Encrypt execute command session for the cluster."
default = false
type = bool
}
variable "encrypt_ephemeral_storage" {
description = "Encrypt the ECS ephemeral storage for the cluster."
default = false
type = bool
}
variable "encrypt_managed_storage" {
description = "Encrypt the ECS managed storage for the cluster."
default = false
type = bool
}
variable "logging_execute_command_session" {
description = "Log execute command session for the cluster."
default = "DEFAULT"
type = string
}