generated from cloudposse/terraform-example-module
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
outputs.tf
55 lines (43 loc) · 1.38 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
46
47
48
49
50
51
52
53
54
55
## eks_iam_role
output "service_account_namespace" {
value = module.helm_release.service_account_namespace
description = "Kubernetes Service Account namespace"
}
output "service_account_name" {
value = module.helm_release.service_account_name
description = "Kubernetes Service Account name"
}
output "service_account_role_name" {
value = module.helm_release.service_account_role_name
description = "IAM role name"
}
output "service_account_role_unique_id" {
value = module.helm_release.service_account_role_unique_id
description = "IAM role unique ID"
}
output "service_account_role_arn" {
value = module.helm_release.service_account_role_arn
description = "IAM role ARN"
}
output "service_account_policy_name" {
value = module.helm_release.service_account_policy_name
description = "IAM policy name"
}
output "service_account_policy_id" {
value = module.helm_release.service_account_policy_id
description = "IAM policy ID"
}
output "service_account_policy_arn" {
value = module.helm_release.service_account_policy_arn
description = "IAM policy ARN"
}
## helm_release
output "metadata" {
description = "Block status of the deployed release."
value = module.helm_release.metadata
}
## EKS cluster
output "eks_cluster_id" {
description = "The name of the cluster"
value = module.eks_cluster.eks_cluster_id
}