outputs.tf 405 B

123456789101112
  1. output "elb_attachments" {
  2. value = [ module.indexer0.asg_name[0], module.indexer1.asg_name[0], module.indexer2.asg_name[0] ]
  3. }
  4. output "nlb_ips" {
  5. # Should be in git@github.xdr.accenturefederalcyber.com:mdr-engineering/msoc-CUST-pop.git in deployment-apps/CUST_hf_outputs/local/outputs.conf
  6. value = aws_eip.nlb[*].public_ip
  7. }
  8. output "instance_profile" {
  9. value = module.instance_profile.role_id
  10. }