Select Git revision
variables.tf
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
variables.tf 999 B
variable "helm_config" {
type = any
description = "Helm provider config for Yunikorn"
default = {}
}
variable "manage_via_gitops" {
type = bool
default = false
description = "Determines if the add-on should be managed via GitOps"
}
variable "irsa_policies" {
type = list(string)
default = []
description = "IAM Policy ARN list for any IRSA policies"
}
variable "addon_context" {
type = object({
aws_caller_identity_account_id = string
aws_caller_identity_arn = string
aws_eks_cluster_endpoint = string
aws_partition_id = string
aws_region_name = string
eks_cluster_id = string
eks_oidc_issuer_url = string
eks_oidc_provider_arn = string
tags = map(string)
irsa_iam_role_path = string
irsa_iam_permissions_boundary = string
})
description = "Input configuration for the addon"
}