Skip to content

Commit 93bec8a

Browse files
committed
Improving variables definition
1 parent 792e967 commit 93bec8a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ variable "dns_servers" {
6969

7070
variable "docker_labels" {
7171
type = map(string)
72-
description = "The configuration options to send to the `docker_labels`"
72+
description = "(Optional) The configuration options to send to the `docker_labels`"
7373
default = null
7474
}
7575

@@ -97,7 +97,7 @@ variable "firelens_configuration" {
9797
type = string
9898
options = map(string)
9999
})
100-
description = "The FireLens configuration for the container. This is used to specify and configure a log router for container logs. For more details, see https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_FirelensConfiguration.html"
100+
description = "(Optional) The FireLens configuration for the container. This is used to specify and configure a log router for container logs. For more details, see https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_FirelensConfiguration.html"
101101
default = null
102102
}
103103

@@ -110,7 +110,7 @@ variable "healthcheck" {
110110
interval = number
111111
startPeriod = number
112112
})
113-
description = "A map containing command (string), timeout, interval (duration in seconds), retries (1-10, number of times to retry before marking container unhealthy), and startPeriod (0-300, optional grace period to wait, in seconds, before failed healthchecks count toward retries)"
113+
description = "(Optional) A map containing command (string), timeout, interval (duration in seconds), retries (1-10, number of times to retry before marking container unhealthy), and startPeriod (0-300, optional grace period to wait, in seconds, before failed healthchecks count toward retries)"
114114
default = null
115115
}
116116

@@ -130,7 +130,7 @@ variable "log_configuration" {
130130
valueFrom = string
131131
}))
132132
})
133-
description = "Log configuration options to send to a custom log driver for the container. For more details, see https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_LogConfiguration.html"
133+
description = "(Optional) Log configuration options to send to a custom log driver for the container. For more details, see https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_LogConfiguration.html"
134134
default = null
135135
}
136136

0 commit comments

Comments
 (0)