Skip to content

Commit 6d8abde

Browse files
committed
Fixing error in variable definition
1 parent 2102c2b commit 6d8abde

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Check valid versions on:
1717

1818
module "ecs-fargate-service" {
1919
source = "cn-terraform/ecs-fargate-service/aws"
20-
version = "1.0.3"
20+
version = "1.0.4"
2121
name_preffix = var.name_preffix
2222
profile = var.profile
2323
region = var.region
@@ -114,7 +114,7 @@ Check versions for this module on:
114114
The task definition module should like this:
115115

116116
module "td" {
117-
source = "cn-terraform/ecs-fargate-task-definition/aws"
117+
source = "cn-terraform/ecs-fargate-task-definition/aws"
118118
version = "1.0.1"
119119
name_preffix = var.name_preffix
120120
profile = var.profile

variables.tf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,9 @@ variable "deployment_minimum_healthy_percent" {
7575
}
7676

7777
variable "enable_ecs_managed_tags" {
78-
description = "(Optional) Specifies whether to enable Amazon ECS managed tags for the tasks within the service."
79-
default = ""
78+
description = "(Optional) Specifies whether to enable Amazon ECS managed tags for the tasks within the service.Valid values are true or false. Default true."
79+
type = bool
80+
default = true
8081
}
8182

8283
variable "propagate_tags" {

0 commit comments

Comments
 (0)