Fix tutorial error.

Without versions override it fails with:
 Error: Failed to query available provider packages
│
│ Could not retrieve the list of available versions for provider hashicorp/kubectl: provider registry registry.terraform.io does not have a provider named registry.terraform.io/hashicorp/kubectl
│
│ All modules should specify their required_providers so that external consumers will get the correct providers when using a module. To see which modules are currently depending on hashicorp/kubectl, run the following command:
│     terraform providers
This commit is contained in:
Wiktor Niesiobędzki 2024-06-28 14:42:20 +00:00 committed by Wiktor Niesiobędzki
parent 4e8adc9c43
commit 22684f49e7
2 changed files with 23 additions and 1 deletions

View File

@ -92,7 +92,7 @@ cluster_name = "gke-patterns-cluster"
cluster_create = { cluster_create = {
deletion_protection = false deletion_protection = false
labels = { labels = {
pattern = "kafka" pattern = "batch"
} }
} }
region = "europe-west1" region = "europe-west1"

View File

@ -0,0 +1,22 @@
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
terraform {
required_providers {
kubectl = {
source = "gavinbunney/kubectl"
version = ">= 1.7.0"
}
}
}