Files
dsk-iac/kops/aws_kops_prod/terraform/02_nlb.tf
havelight-ee 2d70373907 update
2023-05-11 13:55:28 +09:00

20 lines
446 B
HCL

resource "aws_alb" "nlb-prod-kr-ingress" {
name = "nlb-prod-kr-ingress"
internal = false
load_balancer_type = "network"
subnet_mapping {
subnet_id = "${var.Public_Subnet_ID_1}"
}
subnet_mapping {
subnet_id = "${var.Public_Subnet_ID_2}"
}
subnet_mapping {
subnet_id = "${var.Public_Subnet_ID_3}"
}
enable_deletion_protection = false
tags = {
Environment = "nlb-prod-kr-ingress"
}
}