mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-20 16:43:46 +01:00
feat: Add EKS Fargate support (#1067)
Co-authored-by: Simon Gurcke <simon@gurcke.de> Co-authored-by: Daniel Piddock <33028589+dpiddockcmp@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
571da60aea
commit
0d77e30075
20
outputs.tf
20
outputs.tf
@@ -166,6 +166,26 @@ output "worker_iam_role_arn" {
|
||||
)[0]
|
||||
}
|
||||
|
||||
output "fargate_profile_ids" {
|
||||
description = "EKS Cluster name and EKS Fargate Profile names separated by a colon (:)."
|
||||
value = module.fargate.fargate_profile_ids
|
||||
}
|
||||
|
||||
output "fargate_profile_arns" {
|
||||
description = "Amazon Resource Name (ARN) of the EKS Fargate Profiles."
|
||||
value = module.fargate.fargate_profile_arns
|
||||
}
|
||||
|
||||
output "fargate_iam_role_name" {
|
||||
description = "IAM role name for EKS Fargate pods"
|
||||
value = module.fargate.iam_role_name
|
||||
}
|
||||
|
||||
output "fargate_iam_role_arn" {
|
||||
description = "IAM role ARN for EKS Fargate pods"
|
||||
value = module.fargate.iam_role_arn
|
||||
}
|
||||
|
||||
output "node_groups" {
|
||||
description = "Outputs from EKS node groups. Map of maps, keyed by var.node_groups keys"
|
||||
value = module.node_groups.node_groups
|
||||
|
||||
Reference in New Issue
Block a user