Skip to content

Commit

Permalink
FIX: Add output variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Sumit Sarkar committed Jul 6, 2018
1 parent f76eda0 commit 7bc6249
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
output "task_definition_arn" {
value = "${aws_ecs_task_definition.service.arn}"
}

output "task_definition_family" {
value = "${aws_ecs_task_definition.service.family}"
}

output "task_definition_revision" {
value = "${aws_ecs_task_definition.service.revision}"
}

0 comments on commit 7bc6249

Please sign in to comment.