12345678910111213141516171819202122232425262728293031 |
- output "security_group_id" {
- value = aws_security_group.lb_server_external.id
- }
- output "alb" {
- value = aws_lb.external
- }
- output "alb_id" {
- value = aws_lb.external.id
- }
- output "nlb" {
- value = aws_lb.static
- }
- output "nlb_id" {
- value = aws_lb.static.id
- }
- output "nlb_name" {
- value = aws_lb.static.name
- }
- output "static_ips" {
- value = aws_eip.static[*].public_ip
- }
- output "forward" {
- value = module.public_dns_record.forward
- }
|