An open API service indexing awesome lists of open source software.

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

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 |