-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
outputs.tf
39 lines (32 loc) · 1.13 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 "cluster_name" {
description = "The name of the EKS cluster."
value = aws_eks_fargate_profile.this.cluster_name
}
output "name" {
description = "The name of the Fargate Profile."
value = aws_eks_fargate_profile.this.fargate_profile_name
}
output "id" {
description = "The ID of the Fargate Profile."
value = aws_eks_fargate_profile.this.id
}
output "arn" {
description = "The ARN of the Fargate Profile."
value = aws_eks_fargate_profile.this.arn
}
output "status" {
description = "The status of the EKS Fargate Profile."
value = aws_eks_fargate_profile.this.status
}
output "subnets" {
description = "The IDs of subnets in which to launch pods."
value = aws_eks_fargate_profile.this.subnet_ids
}
output "pod_execution_role" {
description = "The ARN (Amazon Resource Name) of the IAM Role that provides permissions for the EKS Fargate Profile."
value = aws_eks_fargate_profile.this.pod_execution_role_arn
}
output "selectors" {
description = "A list of selectors to match for pods to use this Fargate profile."
value = aws_eks_fargate_profile.this.selector
}