Skip to content

Commit

Permalink
Fix permadrift (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
SaiPrasannaGopularam authored Jul 25, 2024
1 parent a8b5a9d commit 4c85090
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions ecs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ resource "aws_ecs_task_definition" "task" {
essential = true
memoryReservation = var.docker_memory_reservation
linuxParameters = local.docker_linux_params
systemControls = []
entrypoint = var.entrypoint
portMappings = [{
containerPort = var.app_port
Expand Down
1 change: 1 addition & 0 deletions locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ locals {
docker_linux_params = {
"initProcessEnabled" : true,
"capabilities" : {
"add" : []
"drop" : ["NET_RAW"]
}
}
Expand Down

0 comments on commit 4c85090

Please sign in to comment.