Skip to content

Commit 73fbe84

Browse files
authored
Fix typo (#57)
1 parent ce9727a commit 73fbe84

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ resource "aws_ecs_service" "service" {
331331
task_definition = "${aws_ecs_task_definition.task.family}:${max(aws_ecs_task_definition.task.revision, data.aws_ecs_task_definition.task.revision)}"
332332

333333
desired_count = var.desired_count
334-
propagate_tags = var.propogate_tags
334+
propagate_tags = var.propagate_tags
335335

336336
platform_version = var.platform_version
337337
launch_type = length(var.capacity_provider_strategy) == 0 ? "FARGATE" : null

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ variable "service_registry_arn" {
176176
type = string
177177
}
178178

179-
variable "propogate_tags" {
179+
variable "propagate_tags" {
180180
type = string
181181
description = "Specifies whether to propagate the tags from the task definition or the service to the tasks. The valid values are SERVICE and TASK_DEFINITION."
182182
default = "TASK_DEFINITION"

0 commit comments

Comments
 (0)