resource "aws_lb" "dx3d1-aspera02-nlb" {
  enable_cross_zone_load_balancing = true
  enable_deletion_protection       = true
  internal                         = true
  ip_address_type                  = "ipv4"
  load_balancer_type               = "network"
  name                             = "dx3d1-aspera02-nlb"
  security_groups                  = []
  #subnets = [
  #   "subnet-02160007c27956d59",
  #   "subnet-07aa229f8ff1fcadf",
  # ]
  tags     = {}
  tags_all = {}

  access_logs {
    bucket  = "sme-dx3d-elb-leuc1-ogs"
    enabled = true
    prefix  = "dx3d1-aspera02-nlb"
  }

  subnet_mapping {
    subnet_id = "subnet-02160007c27956d59"
  }
  subnet_mapping {
    subnet_id = "subnet-07aa229f8ff1fcadf"
  }
}

