 /modules/retool/modules/aws_ecs/main.tf Error relates to **subnets = var.subnet_ids ** should this be var.private_subnet_ids? --------------------------------- service_registries { registry_arn = aws_service_discovery_service.retool_code_executor_service[0].arn } dynamic "network_configuration" { for_each = var.launch_type == "FARGATE" ? toset([1]) : toset([]) content { **subnets = var.subnet_ids ** security_groups = [ aws_security_group.containers.id ] assign_public_ip = true } ) ---------------------------------