Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mingfang/terraform-k8s-modules
Terraform Kubernetes Modules
https://github.com/mingfang/terraform-k8s-modules
kubernetes terraform terraform-modules
Last synced: 3 months ago
JSON representation
Terraform Kubernetes Modules
- Host: GitHub
- URL: https://github.com/mingfang/terraform-k8s-modules
- Owner: mingfang
- Created: 2019-09-28T23:15:40.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-08T17:52:22.000Z (9 months ago)
- Last Synced: 2024-04-08T21:33:02.449Z (9 months ago)
- Topics: kubernetes, terraform, terraform-modules
- Language: HCL
- Size: 3.39 MB
- Stars: 71
- Watchers: 6
- Forks: 19
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## terraform-k8s-modules
Terraform Kubernetes Modules## Requirements
- Terraform 0.12 and 0.13
- Kubernetes v1.14+ (Recommended for best CRD support)
- [terraform-provider-k8s](https://github.com/mingfang/terraform-provider-k8s)## Upgrading to Terraform 0.13
- Terraform 0.13 can automatically install this plugin. Make sure your Terraform configuration block has the plugin information like this.
```
terraform {
required_providers {
k8s = {
source = "mingfang/k8s"
}
}
}
```- If you have existing Terraform state created before Terraform 0.13 then you may have to upgrade the state using this command.
```
terraform state replace-provider 'registry.terraform.io/-/k8s' 'mingfang/k8s'
```