123456789101112131415161718192021222324 |
- output "elb_attachments" {
- value = [module.indexer0.asg_name[0], module.indexer1.asg_name[0], module.indexer2.asg_name[0]]
- }
- output "splunkdata_nlb_ips" {
- # Should be in git@github.xdr.accenturefederalcyber.com:mdr-engineering/msoc-CUST-pop.git in deployment-apps/CUST_hf_outputs/local/outputs.conf
- value = aws_eip.nlb[*].public_ip
- }
- output "instance_profile" {
- value = module.instance_profile.role_id
- }
- output "hec_static" {
- value = module.public_dns_record_hec_static.forward
- }
- output "hec_ack" {
- value = module.public_dns_record_hec_ack.forward
- }
- output "hec_nlb_ips" {
- value = aws_eip.hec_static[*].public_ip
- }
|