Skip to content

Commit

Permalink
Update ecs.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
vivid-cpreston authored Dec 23, 2022
1 parent 56bfad7 commit 777b40c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/ecs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ resource "aws_ecs_task_definition" "wfnews_server" {
network_mode = "awsvpc"
requires_compatibilities = ["FARGATE"]
cpu = 4096
memory = 4096
memory = 8192
tags = local.common_tags
container_definitions = jsonencode([
{
essential = true
name = var.server_container_name
image = var.server_image
cpu = 4096
memory = 4096
memory = 8192
networkMode = "awsvpc"
portMappings = [
{
Expand Down

0 comments on commit 777b40c

Please sign in to comment.