mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-28 12:11:48 +01:00
feat!: Add support for Outposts, remove node security group, add support for addon preserve and most_recent configurations (#2250)
Co-authored-by: Anton Babenko <anton@antonbabenko.com> Resolves undefined
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
|
||||
output "iam_role_name" {
|
||||
description = "The name of the IAM role"
|
||||
value = try(aws_iam_role.this[0].name, "")
|
||||
value = try(aws_iam_role.this[0].name, null)
|
||||
}
|
||||
|
||||
output "iam_role_arn" {
|
||||
@@ -14,7 +14,7 @@ output "iam_role_arn" {
|
||||
|
||||
output "iam_role_unique_id" {
|
||||
description = "Stable and unique string identifying the IAM role"
|
||||
value = try(aws_iam_role.this[0].unique_id, "")
|
||||
value = try(aws_iam_role.this[0].unique_id, null)
|
||||
}
|
||||
|
||||
################################################################################
|
||||
@@ -23,20 +23,20 @@ output "iam_role_unique_id" {
|
||||
|
||||
output "fargate_profile_arn" {
|
||||
description = "Amazon Resource Name (ARN) of the EKS Fargate Profile"
|
||||
value = try(aws_eks_fargate_profile.this[0].arn, "")
|
||||
value = try(aws_eks_fargate_profile.this[0].arn, null)
|
||||
}
|
||||
|
||||
output "fargate_profile_id" {
|
||||
description = "EKS Cluster name and EKS Fargate Profile name separated by a colon (`:`)"
|
||||
value = try(aws_eks_fargate_profile.this[0].id, "")
|
||||
value = try(aws_eks_fargate_profile.this[0].id, null)
|
||||
}
|
||||
|
||||
output "fargate_profile_status" {
|
||||
description = "Status of the EKS Fargate Profile"
|
||||
value = try(aws_eks_fargate_profile.this[0].status, "")
|
||||
value = try(aws_eks_fargate_profile.this[0].status, null)
|
||||
}
|
||||
|
||||
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, "")
|
||||
value = try(aws_eks_fargate_profile.this[0].pod_execution_role_arn, null)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user