You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: terraform/app/modules/ecs_service/variables.tf
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -6,10 +6,16 @@ variable "environment" {
6
6
7
7
variable"server_type" {
8
8
type=string
9
-
description="Type of server to be deployed. This is set as an environment variable in the main container, and is used to determine how the application is launched"
9
+
description="Type of server to be deployed. This is set as an environment variable in the main container, and is used to determine how the application is launched."
10
10
nullable=false
11
11
}
12
12
13
+
variable"server_type_name" {
14
+
type=string
15
+
description="Name of the server type to be deployed."
16
+
nullable=true
17
+
}
18
+
13
19
variable"minimum_replica_count" {
14
20
type=number
15
21
description="Minimum amount of allowed replicas for the service. Also the replica count when creating th service."
0 commit comments