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

output "win_ws_id" {
  description = "Id of windows ws security group."
  value       = module.sg-win-ws.sg_id
}

output "lin_ws_id" {
  description = "Id of linux ws security group."
  value       = module.sg-lin-ws.sg_id
}

output "ecs_id" {
  description = "Id of ECS security group."
  value       = module.sg-ecs.sg_id
}

output "win_batch_id" {
  description = "Id of windows batch security group."
  value       = module.sg-win-batch.sg_id
}

output "lin_batch_id" {
  description = "Id of linux batch security group."
  value       = module.sg-lin-batch.sg_id
}

output "aws_batch_id" {
  description = "Id of aws batch security group."
  value       = module.sg-aws-batch.sg_id
}

output "aurora_id" {
  description = "Id of aurora security group."
  value       = module.sg-aurora.sg_id
}

output "leveldb_id" {
  description = "Id of leveldb security group."
  value       = module.sg-leveldb.sg_id
}

output "redis_id" {
  description = "Id of redis security group."
  value       = module.sg-redis.sg_id
}

output "couchbase_id" {
  description = "Id of redis security group."
  value       = module.sg-couchbase.sg_id
}

output "management_id" {
  description = "Id of management security group"
  value       = aws_security_group.remote_management_access.id
}

output "debug_id" {
  description = "Id of debug security group"
  value       = aws_security_group.debug_access.id
}

