https://github.com/blackbird-cloud/terraform-aws-eks-ebs-csi
Terraform module to deploy EBS CSI driver on EKS
https://github.com/blackbird-cloud/terraform-aws-eks-ebs-csi
aws csi ebs eks terraform
Last synced: about 1 month ago
JSON representation
Terraform module to deploy EBS CSI driver on EKS
- Host: GitHub
- URL: https://github.com/blackbird-cloud/terraform-aws-eks-ebs-csi
- Owner: blackbird-cloud
- License: apache-2.0
- Created: 2023-06-29T16:23:17.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-31T15:26:59.000Z (over 1 year ago)
- Last Synced: 2026-01-30T13:11:09.620Z (4 months ago)
- Topics: aws, csi, ebs, eks, terraform
- Language: HCL
- Homepage:
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terraform Aws Eks Ebs Csi Module
Terraform module to deploy EBS CSI driver on EKS
[](https://blackbird.cloud)
## Example
```hcl
module "ebs_csi" {
source = "blackbird-cloud/eks-ebs-csi/aws"
version = "0.0.1"
cluster_name = var.eks_cluster_name
tags = {}
aws_region = var.aws_region
aws_profile = var.aws_profile
chart_values = [
yamlencode({
node : {
tolerations : [
{ key : "application-node", value : "true", effect : "NO_SCHEDULE" }
]
},
storageClasses : [
{
name : "gp3",
annotations : {
"storageclass.kubernetes.io/is-default-class" : "true"
}
allowVolumeExpansion : true
volumeBindingMode : "WaitForFirstConsumer"
reclaimPolicy : "Retain"
parameters : {
type : "gp3"
}
}
]
})
]
}
```
## Requirements
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1 |
| [aws](#requirement\_aws) | 4.15.1 |
| [helm](#requirement\_helm) | 2.4.1 |
## Providers
| Name | Version |
|------|---------|
| [aws](#provider\_aws) | 4.15.1 |
| [helm](#provider\_helm) | 2.4.1 |
## Resources
| Name | Type |
|------|------|
| [helm_release.ebs_csi_driver](https://registry.terraform.io/providers/hashicorp/helm/2.4.1/docs/resources/release) | resource |
| [aws_eks_cluster.cluster](https://registry.terraform.io/providers/hashicorp/aws/4.15.1/docs/data-sources/eks_cluster) | data source |
| [aws_eks_cluster_auth.cluster](https://registry.terraform.io/providers/hashicorp/aws/4.15.1/docs/data-sources/eks_cluster_auth) | data source |
## Inputs
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| [aws\_profile](#input\_aws\_profile) | AWS Profile | `string` | n/a | yes |
| [aws\_region](#input\_aws\_region) | AWS Region | `string` | n/a | yes |
| [chart\_values](#input\_chart\_values) | Chart values addon | `list(any)` | `[]` | no |
| [cluster\_name](#input\_cluster\_name) | EKS Cluster name | `string` | n/a | yes |
| [tags](#input\_tags) | Tags for deployment | `map(string)` | n/a | yes |
## Outputs
No outputs.
## About
We are [Blackbird Cloud](https://blackbird.cloud), Amsterdam based cloud consultancy, and cloud management service provider. We help companies build secure, cost efficient, and scale-able solutions.
Checkout our other :point\_right: [terraform modules](https://registry.terraform.io/namespaces/blackbird-cloud)
## Copyright
Copyright © 2017-2024 [Blackbird Cloud](https://blackbird.cloud)