Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Select Git revision
  • 9d80cc9ab09beafc1a7bbaf3a6cb805b043811e8
  • v4.32.1-EBSI default
  • fix_v4_chine
  • gh-pages
  • main protected
  • upgrade_bluegreen_on_gitops_bridge
  • feat/example-update
  • feat/p5-1_23
  • feat/p5-distributed
  • blueprints-workshops
  • v4
  • argo-multi-cluster
  • v4.32.1-EBSI-patch3
  • v4.32.1-EBSI-patch2
  • EBSI-1
  • v5.0.0
  • v4.32.1
  • v4.32.0
  • v4.31.0
  • v4.30.0
  • v4.29.0
  • v4.28.0
  • v4.27.0
  • v4.26.0
  • v4.25.0
  • v4.24.0
  • v4.23.0
  • v4.22.0
  • v4.21.0
  • v4.20.0
  • v4.19.0
  • v4.18.1
32 results

variables.tf

Blame
  • user avatar
    Apoorva Kulkarni authored
    9d80cc9a
    History
    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"
    }