mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-05-01 04:44:29 +02: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
18
variables.tf
18
variables.tf
@@ -349,3 +349,21 @@ variable "cluster_encryption_config" {
|
||||
}))
|
||||
default = []
|
||||
}
|
||||
|
||||
variable "fargate_profiles" {
|
||||
description = "Fargate profiles to create. See `fargate_profile` keys section in fargate submodule's README.md for more details"
|
||||
type = any
|
||||
default = {}
|
||||
}
|
||||
|
||||
variable "create_fargate_pod_execution_role" {
|
||||
description = "Controls if the EKS Fargate pod execution IAM role should be created."
|
||||
type = bool
|
||||
default = true
|
||||
}
|
||||
|
||||
variable "fargate_pod_execution_role_name" {
|
||||
description = "The IAM Role that provides permissions for the EKS Fargate Profile."
|
||||
type = string
|
||||
default = null
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user