forked from GMADLA/terraform-aws-ecs-web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
45 lines (37 loc) · 1.31 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
output "scale_down_policy_arn" {
description = "Autoscaling scale up policy ARN"
value = "${module.autoscaling.scale_down_policy_arn}"
}
output "scale_up_policy_arn" {
description = "Autoscaling scale up policy ARN"
value = "${module.autoscaling.scale_up_policy_arn}"
}
output "service_name" {
description = "ECS Service Name"
value = "${module.ecs_alb_service_task.service_name}"
}
output "task_role_name" {
description = "ECS Task role name"
value = "${module.ecs_alb_service_task.task_role_name}"
}
output "task_role_arn" {
description = "ECS Task role ARN"
value = "${module.ecs_alb_service_task.task_role_arn}"
}
output "service_security_group_id" {
description = "Security Group id of the ECS task"
value = "${module.ecs_alb_service_task.service_security_group_id}"
}
output "badge_url" {
description = "The URL of the build badge when `badge_enabled` is enabled"
value = "${module.ecs_bg_codepipeline.badge_url}"
}
output "webhook_id" {
description = "The CodePipeline webhook's ARN."
value = "${module.ecs_bg_codepipeline.webhook_id}"
}
output "webhook_url" {
description = "The CodePipeline webhook's URL. POST events to this endpoint to trigger the target."
value = "${module.ecs_bg_codepipeline.webhook_url}"
sensitive = true
}