Skip to content

Commit

Permalink
fix: testing fix for terratest failure
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Witts <[email protected]>
  • Loading branch information
ChristianWitts committed Feb 6, 2025
1 parent 28dfaed commit be26d3d
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions test/gcp_gke_providers.tf
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
terraform {
required_version = ">= 1.8, < 2"
# terraform {
# required_version = ">= 1.8, < 2"

required_providers {
google = {
version = ">= 6.0, < 7.0"
source = "hashicorp/google"
configuration_aliases = [google.compute, google.vpc]
}
# required_providers {
# google = {
# version = ">= 6.0, < 7.0"
# source = "hashicorp/google"
# configuration_aliases = [google.compute, google.vpc]
# }

google-beta = {
version = ">= 6.0, < 7.0"
source = "hashicorp/google-beta"
configuration_aliases = [google-beta.compute-beta]
}
# google-beta = {
# version = ">= 6.0, < 7.0"
# source = "hashicorp/google-beta"
# configuration_aliases = [google-beta.compute-beta]
# }

random = {
version = ">= 3.0, < 4.0"
}
}
}
# random = {
# version = ">= 3.0, < 4.0"
# }
# }
# }

variable "google_credentials" {
description = "GCP Service Account JSON keyfile contents."
Expand Down

0 comments on commit be26d3d

Please sign in to comment.