# Stack name variable to use in other terraform modules
output "service_name_output" {
  value = "${var.environment}-${var.service_name}"
}

# ASG arn variable to use in other terraform modules
output "aws_asg_name_output" {
  value = aws_autoscaling_group.asg.name
}

# Route53 record output
output "aws_route53_record_output" {
  value = aws_route53_record.dns.fqdn
}

output "aws_iam_role_id_output" {
  value = aws_iam_role.sftp_role.id
}

