Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/crazy-canux/terraform-aws-ebs
https://github.com/crazy-canux/terraform-aws-ebs
aws ebs kubernetes terraform
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/crazy-canux/terraform-aws-ebs
- Owner: crazy-canux
- Created: 2022-06-24T06:20:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-27T10:44:57.000Z (about 2 years ago)
- Last Synced: 2024-11-13T17:51:22.345Z (about 2 months ago)
- Topics: aws, ebs, kubernetes, terraform
- Language: HCL
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# terraform-aws-ebs
## HowTo
how to use it:
module "ebs_csi" {
source = "git::https://github.com/crazy-canux/terraform-aws-ebs.git?ref=v1.0.0"
cluster_name = local.cluster_name
csi_namespace = "kube-system"
csi_service_account = "ebs-csi-controller-sa"
oidc_issuer = local.cluster_oidc_issuer_url
ebs_volume_tags = local.tags
csi_chart_version = local.chart_version
helm_values = ["${file("${path.module}/helm-values.yaml")}"]
depends_on = [data.terraform_remote_state.eks]
}