Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo on k8s service's acronym to svc #1436

Merged
merged 2 commits into from
Oct 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/private_zonal_with_networking/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

2 changes: 1 addition & 1 deletion examples/simple_regional_with_networking/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_regional_with_networking/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}