Skip to content

Commit

Permalink
add vpc_id to outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
kilbergr committed Feb 13, 2019
1 parent 503b257 commit d69f1fa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ output "task_role_arn" {
value = "${aws_iam_role.ecs_task_execution.arn}"
}

output "vpc_id" {
description = "ID of the VPC that was created or passed in"
value = "${local.vpc_id}"
}

output "webhook_secret" {
description = "Webhook secret"
value = "${random_id.webhook.hex}"
Expand Down

0 comments on commit d69f1fa

Please sign in to comment.