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:
Thierno IB. BARRY
2020-11-07 23:03:12 +01:00
committed by GitHub
parent 571da60aea
commit 0d77e30075
14 changed files with 460 additions and 2 deletions

View File

@@ -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