Skip to content

How to create aws-ebs-csi-driver addon? #406

Closed Answered by seikyo-cho-lvgs
seikyo-cho-lvgs asked this question in Q&A
Discussion options

You must be logged in to vote

The second time I created the full stack, it works with this way:

    module "ebs_csi_driver_irsa" {
      source  = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
      version = "~> 5.20"

      role_name_prefix = "ebs-csi-driver-"

      attach_ebs_csi_policy = true

      oidc_providers = {
        main = {
          provider_arn               = module.eks_cluster.oidc_provider_arn
          namespace_service_accounts = ["kube-system:ebs-csi-controller-sa"]
        }
      }

      tags = var.tags
    }

    module "eks_blueprints_addons" {
      source  = "aws-ia/eks-blueprints-addons/aws"
      version = "~> 1.1"

      cluster_name      = module.eks_clus…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by seikyo-cho-lvgs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant