https://github.com/blackbird-cloud/terraform-google-gke-config-map
Terraform module to create a ConfigMap on GKE
https://github.com/blackbird-cloud/terraform-google-gke-config-map
config-map gke google terraform
Last synced: 5 days ago
JSON representation
Terraform module to create a ConfigMap on GKE
- Host: GitHub
- URL: https://github.com/blackbird-cloud/terraform-google-gke-config-map
- Owner: blackbird-cloud
- License: apache-2.0
- Created: 2023-02-16T15:44:36.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-31T15:28:05.000Z (over 1 year ago)
- Last Synced: 2026-04-02T15:42:43.999Z (2 months ago)
- Topics: config-map, gke, google, terraform
- Language: HCL
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Requirements
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1 |
| [google](#requirement\_google) | 4.34.0 |
| [kubernetes](#requirement\_kubernetes) | 2.13.1 |
## Providers
| Name | Version |
|------|---------|
| [google](#provider\_google) | 4.34.0 |
| [kubernetes](#provider\_kubernetes) | 2.13.1 |
## Modules
No modules.
## Resources
| Name | Type |
|------|------|
| [kubernetes_config_map.configmap](https://registry.terraform.io/providers/hashicorp/kubernetes/2.13.1/docs/resources/config_map) | resource |
| [google_client_config.provider](https://registry.terraform.io/providers/hashicorp/google/4.34.0/docs/data-sources/client_config) | data source |
| [google_container_cluster.my_cluster](https://registry.terraform.io/providers/hashicorp/google/4.34.0/docs/data-sources/container_cluster) | data source |
## Inputs
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| [cluster\_name](#input\_cluster\_name) | Cluster name | `string` | n/a | yes |
| [config\_map\_binary\_data](#input\_config\_map\_binary\_data) | key values for config map binary data | `map(string)` | `{}` | no |
| [config\_map\_data](#input\_config\_map\_data) | key values for config map data | `map(string)` | `{}` | no |
| [config\_map\_name](#input\_config\_map\_name) | name for config map | `string` | n/a | yes |
| [namespaces](#input\_namespaces) | namespaces where secret will be deployed | `set(string)` | n/a | yes |
| [project](#input\_project) | Google Project ID | `string` | n/a | yes |
| [region](#input\_region) | Google Region | `string` | n/a | yes |
## Outputs
| Name | Description |
|------|-------------|
| [config\_map\_name](#output\_config\_map\_name) | passthrough config map name |
| [configmap](#output\_configmap) | The created config map |