We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b772a3 commit a91117aCopy full SHA for a91117a
env/dev/ecs.tf
@@ -117,6 +117,8 @@ resource "aws_ecs_task_definition" "app" {
117
}
118
]
119
DEFINITION
120
+
121
+ tags = "${var.tags}"
122
123
124
resource "aws_ecs_service" "app" {
@@ -137,6 +139,10 @@ resource "aws_ecs_service" "app" {
137
139
container_port = "${var.container_port}"
138
140
141
142
143
+ enable_ecs_managed_tags = true
144
+ propagate_tags = "SERVICE"
145
146
# workaround for https://github.com/hashicorp/terraform/issues/12634
147
depends_on = [
148
"aws_alb_listener.http",
env/dev/main.tf
@@ -13,7 +13,7 @@ terraform {
13
variable "aws_profile" {}
14
15
provider "aws" {
16
- version = ">= 1.46.0"
+ version = ">= 1.53.0"
17
region = "${var.region}"
18
profile = "${var.aws_profile}"
19
0 commit comments