feat: Allow setting custom IRSA policy name for karpenter (#2480)

This commit is contained in:
Patrick Lee Scott
2023-02-17 09:23:58 -06:00
committed by GitHub
parent 274c1a9222
commit 8954ff7bb4
3 changed files with 11 additions and 3 deletions

View File

@@ -32,6 +32,12 @@ variable "irsa_name" {
default = null
}
variable "irsa_policy_name" {
description = "Name of IAM policy for service accounts"
type = string
default = null
}
variable "irsa_use_name_prefix" {
description = "Determines whether the IAM role for service accounts name (`irsa_name`) is used as a prefix"
type = bool