skip to Main Content

Error: Unsupported argument terraform ecs with load balancer – Amazon Web Sevices

appreciate your support in solving this issue i have main.tf file like below resource "aws_ecs_service" "nodejs-service" { name = "nodejs-service" cluster = aws_ecs_cluster.project_cluster.id task_definition = aws_ecs_task_definition.nodejs.arn launch_type = "FARGATE" desired_count = 1 load_balancer { target_group_arns = module.alb.target_group_arns container_name = "${aws_ecs_task_definition.nodejs.family}"…

VIEW QUESTION

How to make an azure cost management export run daily and only export that day or previous days data? Using terraform or azure api

Taking the Terraform resource example: resource "azurerm_billing_account_cost_management_export" "example" { name = "example" billing_account_id = "example" recurrence_type = "Daily" recurrence_period_start_date = "2020-08-18T00:00:00Z" recurrence_period_end_date = "2020-09-18T00:00:00Z" export_data_storage_location { container_id = azurerm_storage_container.example.resource_manager_id root_folder_path = "/root/updated" } export_data_options { type = "Usage" time_frame =…

VIEW QUESTION
Back To Top
Search