mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-18 23:43:49 +01:00
fix: Wrong rolearn in aws_auth_configmap_yaml (#1820)
This commit is contained in:
@@ -81,6 +81,7 @@ No modules.
|
||||
|------|-------------|
|
||||
| <a name="output_fargate_profile_arn"></a> [fargate\_profile\_arn](#output\_fargate\_profile\_arn) | Amazon Resource Name (ARN) of the EKS Fargate Profile |
|
||||
| <a name="output_fargate_profile_id"></a> [fargate\_profile\_id](#output\_fargate\_profile\_id) | EKS Cluster name and EKS Fargate Profile name separated by a colon (`:`) |
|
||||
| <a name="output_fargate_profile_pod_execution_role_arn"></a> [fargate\_profile\_pod\_execution\_role\_arn](#output\_fargate\_profile\_pod\_execution\_role\_arn) | Amazon Resource Name (ARN) of the EKS Fargate Profile Pod execution role ARN |
|
||||
| <a name="output_fargate_profile_status"></a> [fargate\_profile\_status](#output\_fargate\_profile\_status) | Status of the EKS Fargate Profile |
|
||||
| <a name="output_iam_role_arn"></a> [iam\_role\_arn](#output\_iam\_role\_arn) | The Amazon Resource Name (ARN) specifying the IAM role |
|
||||
| <a name="output_iam_role_name"></a> [iam\_role\_name](#output\_iam\_role\_name) | The name of the IAM role |
|
||||
|
||||
@@ -35,3 +35,8 @@ output "fargate_profile_status" {
|
||||
description = "Status of the EKS Fargate Profile"
|
||||
value = try(aws_eks_fargate_profile.this[0].status, "")
|
||||
}
|
||||
|
||||
output "fargate_profile_pod_execution_role_arn" {
|
||||
description = "Amazon Resource Name (ARN) of the EKS Fargate Profile Pod execution role ARN"
|
||||
value = try(aws_eks_fargate_profile.this[0].pod_execution_role_arn, "")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user