-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
34 lines (28 loc) · 1.26 KB
/
outputs.tf
File metadata and controls
34 lines (28 loc) · 1.26 KB
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
output "cluster_arn" {
value = aws_ecs_cluster.this.arn
description = "string ||| AWS Arn of the ECS cluster."
}
output "cluster_name" {
value = aws_ecs_cluster.this.name
description = "string ||| Name of the ECS cluster."
}
output "deployers_name" {
value = aws_iam_group.deployers.name
description = "string ||| Name of the deployers IAM Group that is allowed to deploy to the ECS cluster."
}
output "deployers_policy_name" {
value = aws_iam_policy.deployers.name
description = "string ||| Name of the deployers IAM Policy that is allowed to deploy to the Fargate cluster."
}
output "deployers_policy_arn" {
value = aws_iam_policy.deployers.arn
description = "string ||| ARN of the deployers IAM Policy that is allowed to deploy to the Fargate cluster."
}
output "capacity_provider_name" {
value = aws_ecs_capacity_provider.this.name
description = "string ||| The name of the capacity provider used by the cluster. This provides a hook into the same compute resources for provisioning ECS tasks."
}
output "log_retention_in_days" {
value = var.log_retention_in_days
description = "number ||| The retention period for the CloudWatch logs for each ECS service in this cluster."
}