Single instance, external DB

eb create --single
This commit is contained in:
2020-07-30 00:42:23 +01:00
parent e860a4557c
commit cae918f832
5 changed files with 75 additions and 28 deletions

View File

@@ -1,12 +1,17 @@
# S3
output "s3_static_assets" {
value = "resource.aws_s3_bucket.static_assets.id"
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" {
value = "resource.aws_s3_bucket.static_assets.arn"
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."
}