forked from arkhoss/terraform-aws-eks-roles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
31 lines (24 loc) · 865 Bytes
/
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
output "iam_policy_KubernetesAdminPolicy" {
description = "KubernetesAdminPolicy ARN"
value = aws_iam_policy.KubernetesAdminPolicy.arn
}
output "iam_policy_KubernetesOpsPolicy" {
description = "KubernetesOpsPolicy ARN"
value = aws_iam_policy.KubernetesOpsPolicy.arn
}
output "iam_policy_KubernetesViewOnlyPolicy" {
description = "KubernetesViewOnlyPolicy ARN"
value = aws_iam_policy.KubernetesViewOnlyPolicy.arn
}
output "iam_role_KubernetesAdminRole" {
description = "KubernetesAdminRole ARN"
value = aws_iam_role.KubernetesAdminRole.arn
}
output "iam_role_KubernetesOpsRole" {
description = "KubernetesOpsRole ARN"
value = aws_iam_role.KubernetesOpsRole.arn
}
output "iam_role_KubernetesViewOnlyRole" {
description = "KubernetesViewOnlyRole ARN"
value = aws_iam_role.KubernetesViewOnlyRole.arn
}