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 768c55a commit c53893dCopy full SHA for c53893d
ecs.tf
@@ -9,7 +9,7 @@ resource "aws_ecs_service" "service" {
9
task_definition = var.task_definition_arn
10
desired_count = var.desired_task_count
11
health_check_grace_period_seconds = var.health_check_grace_period_seconds
12
- launch_type = var.launch_type
+ launch_type = length(var.capacity_provider_strategy) > 0 ? null : var.launch_type
13
14
network_configuration {
15
security_groups = var.security_group_ids
0 commit comments