Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/crazy-canux/terraform-aws-efs
https://github.com/crazy-canux/terraform-aws-efs
aws efs kubernetes terraform
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/crazy-canux/terraform-aws-efs
- Owner: crazy-canux
- Created: 2022-06-24T06:32:49.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-27T10:44:32.000Z (almost 2 years ago)
- Last Synced: 2024-04-16T04:22:52.130Z (7 months ago)
- Topics: aws, efs, kubernetes, terraform
- Language: HCL
- Homepage:
- Size: 17.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# terraform-aws-efs
## HowTo
module "efs_csi" {
source = "git::https://github.com/crazy-canux/terraform-aws-efs.git?ref=v1.0.0"
cluster_name = local.cluster_name
csi_namespace = "kube-system"
csi_service_account = "efs-csi-controller-sa"
oidc_issuer = local.cluster_oidc_issuer_url
efs_volume_tags = local.tags
csi_chart_version = local.chart_version
helm_values = ["${file("${path.module}/helm-values.yaml")}"]
subnet_ids = local.subnet_ids
vpc_id = local.vpc_id
depends_on = [data.terraform_remote_state.eks]
}