Skip to content

Commit

Permalink
Merge pull request #38 from kilbergr/kilbergr_add-vpc-to-outputs
Browse files Browse the repository at this point in the history
add vpc_id to outputs
  • Loading branch information
antonbabenko authored Feb 14, 2019
2 parents 503b257 + d69f1fa commit 9c9f958
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 9c9f958

Please sign in to comment.