Skip to content

Commit

Permalink
Merge branch 'master' into gl/fixed_shared_vpc
Browse files Browse the repository at this point in the history
  • Loading branch information
morgante authored Mar 7, 2019
2 parents 6354666 + 58818a7 commit 1213fd3
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ The roles granted are specifically:
### Terraform plugins

- [Terraform](https://www.terraform.io/downloads.html) 0.10.x
- [terraform-provider-google] plugin 1.19.x
- [terraform-provider-google-beta] plugin 1.19.x
- [terraform-provider-google] plugin 2.1.x
- [terraform-provider-google-beta] plugin 2.1.x
- [terraform-provider-gsuite] plugin 0.1.x if GSuite functionality is desired

### Permissions
Expand Down
4 changes: 2 additions & 2 deletions examples/gke_shared_vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ locals {

provider "google" {
credentials = "${file(local.credentials_file_path)}"
version = "~> 1.19"
version = "~> 2.1"
}

provider "google-beta" {
credentials = "${file(local.credentials_file_path)}"
version = "~> 1.19"
version = "~> 2.1"
}

module "project-factory" {
Expand Down
4 changes: 2 additions & 2 deletions examples/group_project/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ locals {
*****************************************/
provider "google" {
credentials = "${file(local.credentials_file_path)}"
version = "~> 1.19"
version = "~> 2.1"
}

provider "google-beta" {
credentials = "${file(local.credentials_file_path)}"
version = "~> 1.19"
version = "~> 2.1"
}

provider "gsuite" {
Expand Down
4 changes: 2 additions & 2 deletions examples/project-hierarchy/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ locals {
*****************************************/
provider "google" {
credentials = "${file(local.credentials_file_path)}"
version = "~> 1.19"
version = "~> 2.1"
}

provider "google-beta" {
credentials = "${file(local.credentials_file_path)}"
version = "~> 1.19"
version = "~> 2.1"
}

provider "gsuite" {
Expand Down
4 changes: 2 additions & 2 deletions examples/simple_project/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ locals {
*****************************************/
provider "google" {
credentials = "${file(local.credentials_file_path)}"
version = "~> 1.19"
version = "~> 2.1"
}

provider "google-beta" {
credentials = "${file(local.credentials_file_path)}"
version = "~> 1.19"
version = "~> 2.1"
}

module "project-factory" {
Expand Down
4 changes: 2 additions & 2 deletions modules/project_services/examples/project_services/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ locals {
*****************************************/
provider "google" {
credentials = "${file(local.credentials_file_path)}"
version = "~> 1.19"
version = "~> 2.1"
}

provider "google-beta" {
credentials = "${file(local.credentials_file_path)}"
version = "~> 1.19"
version = "~> 2.1"
}

module "project-services" {
Expand Down

0 comments on commit 1213fd3

Please sign in to comment.