Skip to content

Commit

Permalink
Allow for provider 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
wmuizelaar committed Feb 3, 2020
1 parent 23add42 commit 1c2cde1
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/boolean_org_exclude/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Provider configuration
*****************************************/
provider "google" {
version = "~> 2.5.0"
version = "~> 3.6.0"
}

/******************************************
Expand Down
2 changes: 1 addition & 1 deletion examples/boolean_project_allow/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Provider configuration
*****************************************/
provider "google" {
version = "~> 2.5.0"
version = "~> 3.6.0"
}

/******************************************
Expand Down
2 changes: 1 addition & 1 deletion examples/list_folder_deny/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Provider configuration
*****************************************/
provider "google" {
version = "~> 2.5.0"
version = "~> 3.6.0"
}

/******************************************
Expand Down
2 changes: 1 addition & 1 deletion examples/list_org_exclude/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
Provider configuration
*****************************************/
provider "google" {
version = "~> 2.5.0"
version = "~> 3.6.0"
}

/******************************************
Expand Down
2 changes: 1 addition & 1 deletion test/setup/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "project" {
source = "terraform-google-modules/project-factory/google"
version = "~> 6.0"
version = "~> 7.0"

name = "ci-org-policy"
random_project_id = true
Expand Down
4 changes: 2 additions & 2 deletions test/setup/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ terraform {
}

provider "google" {
version = "~> 2.13.0"
version = "~> 3.6.0"
}

provider "google-beta" {
version = "~> 2.13.0"
version = "~> 3.6.0"
}
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
terraform {
required_version = ">= 0.12"
required_providers {
google = "~> 2.5.0"
google = ">= 2.5, < 4.0"
}
}

0 comments on commit 1c2cde1

Please sign in to comment.