output "jenkins_master_id" {
  description = "Id of jenkins master security group."
  value       = module.sg-jenkins-master.sg_id
}

output "jenkins_ec2_agent_id" {
  description = "Id of jenkins ec2 agent security group."
  value       = module.sg-jenkins-ec2-agent.sg_id
}

output "alb_id" {
  description = "Id of ALB security group."
  value       = module.sg-alb.sg_id
}

output "remote_ssh_id" {
  description = "Id of SSH security group."
  value       = aws_security_group.remote_management_ssh_access.id
}

output "whitelisted_cidrs" {
  description = "Id of debug security group"
  value       = local.whitelisted_cidrs
}

output "github_security_groups" {
  description = "Id of SSH security group."
  value       = aws_security_group.github_access
}

output "ext_web_id" {
  description = "Id of external web access security group."
  value       = aws_security_group.ext_web_sg.id
}

output "ext_web_http_id" {
  description = "Id of external web access security group."
  value       = aws_security_group.ext_web_http_sg.id
}

output "endpoint_id" {
  description = "Id of vpc endpoint security group."
  value       = module.sg-endpoint.sg_id
}
