-
-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add task role and outputs for task and service role * refactor naming * add healthcheck parameter * update readme
- Loading branch information
Showing
5 changed files
with
91 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
# TODO: (output) security group IDs | ||
|
||
output "service_name" { | ||
description = "ECS Service name." | ||
description = "ECS Service name" | ||
value = "${aws_ecs_service.default.name}" | ||
} | ||
|
||
output "service_role_arn" { | ||
description = "ECS Service role ARN" | ||
value = "${aws_iam_role.ecs_service.arn}" | ||
} | ||
|
||
output "task_role_arn" { | ||
description = "ECS Task role ARN" | ||
value = "${aws_iam_role.ecs_task.arn}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters