Skip to content

Commit

Permalink
Fix typo (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
mandrean authored Jul 13, 2022
1 parent ce9727a commit 73fbe84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ resource "aws_ecs_service" "service" {
task_definition = "${aws_ecs_task_definition.task.family}:${max(aws_ecs_task_definition.task.revision, data.aws_ecs_task_definition.task.revision)}"

desired_count = var.desired_count
propagate_tags = var.propogate_tags
propagate_tags = var.propagate_tags

platform_version = var.platform_version
launch_type = length(var.capacity_provider_strategy) == 0 ? "FARGATE" : null
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ variable "service_registry_arn" {
type = string
}

variable "propogate_tags" {
variable "propagate_tags" {
type = string
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."
default = "TASK_DEFINITION"
Expand Down

0 comments on commit 73fbe84

Please sign in to comment.