18 lines
509 B
HCL
18 lines
509 B
HCL
# S3
|
|
output "s3_static_assets_id" {
|
|
value = resource.aws_s3_bucket.static_assets.id
|
|
description = "Name of the static assets S3 bucket."
|
|
}
|
|
|
|
output "s3_static_assets_arn" {
|
|
value = resource.aws_s3_bucket.static_assets.arn
|
|
description = "ARN of the static assets S3 bucket."
|
|
}
|
|
|
|
# Security groups
|
|
|
|
output "aws_security_group_ec2_security_group" {
|
|
value = aws_security_group.ec2_security_group.id
|
|
description = "Security group for the EC2 instances applied by the Elastic Scaler."
|
|
}
|