resource "aws_lb" "ampdas-aspera02-nlb" {
  enable_cross_zone_load_balancing = true
  enable_deletion_protection       = true
  internal                         = false
  ip_address_type                  = "ipv4"
  load_balancer_type               = "network"
  name                             = "ampdas-aspera02-nlb"
  security_groups                  = []
  subnets = [
    "subnet-09a02850299bb13f7",
    "subnet-0c276d6ceb1be71de",
  ]
  tags     = {}
  tags_all = {}

  access_logs {
    bucket  = "amp-dev-elb-logs"
    enabled = true
    prefix  = "ampdas-aspera02-nlb"
  }
}

