Skip to content

Commit

Permalink
fix(terraform): minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
hfreire committed Jun 23, 2019
1 parent 5fdc5c3 commit b7662a7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions share/terraform/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,19 @@ output "aws_region" {
}

output "aws_vpc_id" {
value = data.aws_vpc.selected.id
value = module.github-handyman.aws_vpc

sensitive = true
}

output "aws_subnet_ids" {
value = data.aws_subnet_ids.selected.ids
value = module.github-handyman.aws_subnet_ids

sensitive = true
}

output "aws_security_group_ids" {
value = data.aws_security_groups.selected.ids
value = module.github-handyman.aws_security_groups

sensitive = true
}

0 comments on commit b7662a7

Please sign in to comment.