Skip to content

Commit b8e2695

Browse files
committed
Lock google, google-beta provider version to ~> 1.20
The google and google-beta providers are causing some issues with the simple-regional-private example; these issues in turn are causing CI to fail for all recent pull requests. This commit repairs CI by pinning the version of the google and google-beta providers; we can address v2.0 support in the future.
1 parent 8205618 commit b8e2695

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed

examples/deploy_service/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ locals {
2121
provider "google" {
2222
credentials = "${file(var.credentials_path)}"
2323
region = "${var.region}"
24+
version = "~> 1.20"
2425
}
2526

2627
provider "kubernetes" {

examples/node_pool/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ locals {
1919
}
2020

2121
provider "google" {
22+
version = "~> 1.20"
2223
credentials = "${file(var.credentials_path)}"
2324
region = "${var.region}"
2425
}

examples/shared_vpc/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ locals {
1919
}
2020

2121
provider "google" {
22+
version = "~> 1.20"
2223
credentials = "${file(var.credentials_path)}"
2324
region = "${var.region}"
2425
}

examples/simple_regional_private/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ locals {
1919
}
2020

2121
provider "google-beta" {
22+
version = "~> 1.20"
2223
credentials = "${file(var.credentials_path)}"
2324
region = "${var.region}"
2425
}

examples/simple_zonal/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ locals {
1919
}
2020

2121
provider "google" {
22+
version = "~> 1.20"
2223
credentials = "${file(var.credentials_path)}"
2324
region = "${var.region}"
2425
}

examples/simple_zonal_private/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ locals {
1919
}
2020

2121
provider "google-beta" {
22+
version = "~> 1.20"
2223
credentials = "${file(var.credentials_path)}"
2324
region = "${var.region}"
2425
}

examples/stub_domains/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ locals {
1919
}
2020

2121
provider "google" {
22+
version = "~> 1.20"
2223
credentials = "${file(var.credentials_path)}"
2324
region = "${var.region}"
2425
}

0 commit comments

Comments
 (0)