Skip to content

Commit

Permalink
#7 Write descriptions for outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron authored and Rayraegah committed May 20, 2020
1 parent c7ec307 commit 82e59fd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
output "vpc" {
description = "VPC created to hold Hasura resources"
value = aws_vpc.hasura
}

output "private_subnets" {
description = "Private subnets created for RDS within the VPC, each in a different AZ"
value = aws_subnet.hasura_private
}

output "public_subnets" {
description = "Public subnets created for Hasura within the VPC, each in a different AZ"
value = aws_subnet.hasura_public
}

output "ecs_security_group" {
description = "Security group controlling access to the ECS tasks"
value = aws_security_group.hasura_ecs
}

0 comments on commit 82e59fd

Please sign in to comment.