Skip to content

Commit 2af57f2

Browse files
committed
Removing not applicable variable for ECS task
fix #2
1 parent a82f375 commit 2af57f2

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

server.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ resource "aws_ecs_task_definition" "td" {
3939
task_role_arn = aws_iam_role.ecs_task_execution_role.arn
4040
execution_role_arn = aws_iam_role.ecs_task_execution_role.arn
4141
network_mode = "awsvpc"
42-
ipc_mode = var.ipc_mode
4342
dynamic "placement_constraints" {
4443
for_each = var.placement_constraints
4544
content {

variables.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -193,11 +193,6 @@ variable "working_directory" {
193193
# ---------------------------------------------------------------------------------------------------------------------
194194
# AWS ECS Task Definition Variables
195195
# ---------------------------------------------------------------------------------------------------------------------
196-
variable "ipc_mode" {
197-
description = "The IPC resource namespace to be used for the containers in the task The valid values are \"host\", \"task\", and \"none\"."
198-
default = "null"
199-
}
200-
201196
variable "placement_constraints" {
202197
type = list
203198
description = "A set of placement constraints rules that are taken into consideration during task placement. Maximum number of placement_constraints is 10. This is a list of maps, where each map should contain \"type\" and \"expression\""

0 commit comments

Comments
 (0)