From 3158f60beb5c680253d47cd56f7f0e7684dd2b00 Mon Sep 17 00:00:00 2001 From: Philippe Burgisser <58422473+pburgisser@users.noreply.github.com> Date: Thu, 20 Oct 2022 12:47:23 +0000 Subject: [PATCH] Fix typo on k8s service's acronym to svc --- examples/private_zonal_with_networking/variables.tf | 2 +- examples/simple_regional_with_networking/README.md | 2 +- examples/simple_regional_with_networking/variables.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/private_zonal_with_networking/variables.tf b/examples/private_zonal_with_networking/variables.tf index 2c3edc9304..1296a7c5de 100644 --- a/examples/private_zonal_with_networking/variables.tf +++ b/examples/private_zonal_with_networking/variables.tf @@ -49,6 +49,6 @@ variable "ip_range_pods_name" { variable "ip_range_services_name" { description = "The secondary ip range to use for services" - default = "ip-range-scv" + default = "ip-range-svc" } diff --git a/examples/simple_regional_with_networking/README.md b/examples/simple_regional_with_networking/README.md index ac53ed3220..3024b0ca8d 100644 --- a/examples/simple_regional_with_networking/README.md +++ b/examples/simple_regional_with_networking/README.md @@ -9,7 +9,7 @@ This example illustrates how to create a VPC and a simple cluster. |------|-------------|------|---------|:--------:| | cluster\_name | The name for the GKE cluster | `string` | `"gke-on-vpc-cluster"` | no | | ip\_range\_pods\_name | The secondary ip range to use for pods | `string` | `"ip-range-pods"` | no | -| ip\_range\_services\_name | The secondary ip range to use for services | `string` | `"ip-range-scv"` | no | +| ip\_range\_services\_name | The secondary ip range to use for services | `string` | `"ip-range-svc"` | no | | network | The VPC network created to host the cluster in | `string` | `"gke-network"` | no | | project\_id | The project ID to host the cluster in | `any` | n/a | yes | | region | The region to host the cluster in | `string` | `"us-central1"` | no | diff --git a/examples/simple_regional_with_networking/variables.tf b/examples/simple_regional_with_networking/variables.tf index d54fafd78e..3ab162ad59 100644 --- a/examples/simple_regional_with_networking/variables.tf +++ b/examples/simple_regional_with_networking/variables.tf @@ -45,6 +45,6 @@ variable "ip_range_pods_name" { variable "ip_range_services_name" { description = "The secondary ip range to use for services" - default = "ip-range-scv" + default = "ip-range-svc" }