Skip to content

Commit

Permalink
add transit encryption
Browse files Browse the repository at this point in the history
  • Loading branch information
zahornyak committed Sep 21, 2023
1 parent 47c02f5 commit 9aa58f2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,10 @@ resource "aws_ecs_task_definition" "service" {
name = lookup(var.efs_volume, "name", null)
host_path = lookup(var.efs_volume, "host_path", null)
efs_volume_configuration {
file_system_id = lookup(var.efs_volume, "file_system_id", null)
root_directory = lookup(var.efs_volume, "root_directory", null)
file_system_id = lookup(var.efs_volume, "file_system_id", null)
root_directory = lookup(var.efs_volume, "root_directory", null)
transit_encryption = lookup(var.efs_volume, "transit_encryption", null)
transit_encryption_port = lookup(var.efs_volume, "transit_encryption_port", null)
authorization_config {
access_point_id = lookup(var.efs_volume, "access_point_id", null)
iam = lookup(var.efs_volume, "iam", null)
Expand Down

0 comments on commit 9aa58f2

Please sign in to comment.