Skip to content

Commit 23b8c7f

Browse files
committed
chore: re-order ecs service and task definition variables
1 parent e21ddc5 commit 23b8c7f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

variables.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ variable "vpc_id" {
99
}
1010

1111
################################################################################
12-
# ECS Task Definition
12+
# ECS Service
1313
################################################################################
1414

15-
variable "task_definition" {
16-
description = "ECS Task Definition to use for running tasks."
15+
variable "service" {
16+
description = "Configuration for ECS Service."
1717
type = any
1818
}
1919

2020
################################################################################
21-
# ECS Service
21+
# ECS Task Definition
2222
################################################################################
2323

24-
variable "service" {
25-
description = "Configuration for ECS Service."
24+
variable "task_definition" {
25+
description = "ECS Task Definition to use for running tasks."
2626
type = any
2727
}
2828

0 commit comments

Comments
 (0)