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.
2 parents 13efae9 + 2f9e10e commit 6a36bd9Copy full SHA for 6a36bd9
terraform/groups/ecs-service/main.tf
@@ -64,6 +64,8 @@ module "ecs-service" {
64
docker_repo = local.docker_repo
65
container_version = var.limited_partnerships_api_version
66
container_port = local.container_port
67
+ volumes = [ { "name": "tmp" } ]
68
+ mount_points = [ { "sourceVolume": "tmp", "containerPath": "/tmp", "readOnly": false } ]
69
70
# Service configuration
71
service_name = local.service_name
@@ -80,7 +82,6 @@ module "ecs-service" {
80
82
use_capacity_provider = var.use_capacity_provider
81
83
use_fargate = var.use_fargate
84
fargate_subnets = local.application_subnet_ids
- read_only_root_filesystem = false
85
86
# Cloudwatch
87
cloudwatch_alarms_enabled = var.cloudwatch_alarms_enabled
0 commit comments