forked from cloudposse/terraform-aws-eks-iam-role
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
39 lines (32 loc) · 1.22 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 "service_account_namespace" {
value = local.enabled ? var.service_account_namespace : null
description = "Kubernetes Service Account namespace"
}
output "service_account_name" {
value = local.enabled ? var.service_account_name : null
description = "Kubernetes Service Account name"
}
output "service_account_role_name" {
value = local.enabled ? aws_iam_role.service_account[0].name : null
description = "IAM role name"
}
output "service_account_role_unique_id" {
value = local.enabled ? aws_iam_role.service_account[0].unique_id : null
description = "IAM role unique ID"
}
output "service_account_role_arn" {
value = local.enabled ? aws_iam_role.service_account[0].arn : null
description = "IAM role ARN"
}
output "service_account_policy_name" {
value = local.iam_policy_enabled ? aws_iam_policy.service_account[0].name : null
description = "IAM policy name"
}
output "service_account_policy_id" {
value = local.iam_policy_enabled ? aws_iam_policy.service_account[0].id : null
description = "IAM policy ID"
}
output "service_account_policy_arn" {
value = local.iam_policy_enabled ? aws_iam_policy.service_account[0].arn : null
description = "IAM policy ARN"
}