-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutputs.tf
39 lines (32 loc) · 1.07 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
output "task_role_arn" {
description = "ECS Task role ARN"
value = local.task_role_arn
}
output "task_execution_role_id" {
description = "ECS Task execution role ID"
value = local.task_execution_role_id
}
output "task_execution_role_arn" {
description = "ECS Task execution role ARN"
value = local.task_execution_role_arn
}
output "secret_arns" {
description = "List of ARNs of the SecretsManager secrets"
value = try(aws_secretsmanager_secret.this[*].arn, "")
}
output "target_group_arn" {
description = "id - ARN of the Target Group (matches arn)."
value = try(aws_lb_target_group.this[0].arn, "")
}
output "target_group_id" {
description = "id - ARN of the Target Group (matches arn)."
value = try(aws_lb_target_group.this[0].id, "")
}
output "cloudwatch_log_group_name" {
description = "The name of the log group"
value = try(aws_cloudwatch_log_group.this[0].name, null)
}
output "cloudwatch_log_group_arn" {
description = "The name of the log group"
value = try(aws_cloudwatch_log_group.this[0].arn, null)
}