Skip to content

Commit

Permalink
Merge pull request #10 from isovalent/add-zones-output
Browse files Browse the repository at this point in the history
add zones output
  • Loading branch information
darox authored Oct 10, 2023
2 parents d9bd9d0 + 2b7e21a commit 48a9344
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ An opinionated Terraform module that can be used to create and manage a GKE clus

| Name | Version |
|------|---------|
| <a name="provider_null"></a> [null](#provider\_null) | 3.1.1 |
| <a name="provider_null"></a> [null](#provider\_null) | >= 3.1.1 |

## Modules

| Name | Source | Version |
|------|--------|---------|
| <a name="module_main"></a> [main](#module\_main) | terraform-google-modules/kubernetes-engine/google | 24.1.0 |
| <a name="module_main"></a> [main](#module\_main) | terraform-google-modules/kubernetes-engine/google | 28.0.0 |

## Resources

Expand Down Expand Up @@ -52,6 +52,7 @@ An opinionated Terraform module that can be used to create and manage a GKE clus
|------|-------------|
| <a name="output_id"></a> [id](#output\_id) | n/a |
| <a name="output_path_to_kubeconfig_file"></a> [path\_to\_kubeconfig\_file](#output\_path\_to\_kubeconfig\_file) | n/a |
| <a name="output_zones"></a> [zones](#output\_zones) | n/a |
<!-- END_TF_DOCS -->

## License
Expand Down
4 changes: 4 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ output "id" {
output "path_to_kubeconfig_file" {
value = local.path_to_kubeconfig_file
}

output "zones" {
value = "module.main.zones"
}

0 comments on commit 48a9344

Please sign in to comment.