forked from terraform-aws-modules/terraform-aws-atlantis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
39 lines (32 loc) · 1016 Bytes
/
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
output "atlantis_url" {
description = "URL of Atlantis"
value = local.atlantis_url
}
output "atlantis_url_events" {
description = "Webhook events URL of Atlantis"
value = local.atlantis_url_events
}
output "atlantis_allowed_repo_names" {
description = "Github repositories where webhook should be created"
value = var.atlantis_allowed_repo_names
}
output "task_role_arn" {
description = "The Atlantis ECS 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 = element(concat(random_id.webhook.*.hex, [""]), 0)
}
output "alb_dns_name" {
description = "Dns name of alb"
value = module.alb.dns_name
}
output "ecs_task_definition" {
description = "Task definition for ECS service (used for external triggers)"
value = aws_ecs_service.atlantis.task_definition
}