Skip to content

Commit

Permalink
feat: Update google and google-beta provider versions to ~>3.5 (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
marko7460 committed Feb 11, 2020
1 parent 45b8f07 commit 706b173
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion examples/mysql-ha/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

provider "google" {
version = "~> 2.13"
version = "~> 3.5"
}

provider "null" {
Expand Down
4 changes: 2 additions & 2 deletions examples/mysql-private/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
*/

provider "google" {
version = "~> 2.13"
version = "~> 3.5"
}

provider "google-beta" {
version = "~> 2.13"
version = "~> 3.5"
}

provider "null" {
Expand Down
2 changes: 1 addition & 1 deletion examples/mysql-public/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

provider "google" {
version = "~> 2.13"
version = "~> 3.5"
}

provider "null" {
Expand Down
2 changes: 1 addition & 1 deletion examples/postgresql-ha/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

provider "google" {
version = "~> 2.13"
version = "~> 3.5"
}

provider "null" {
Expand Down
4 changes: 2 additions & 2 deletions examples/postgresql-public/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
*/

provider "google" {
version = "~> 2.13"
version = "~> 3.5"
}

provider "google-beta" {
version = "~> 2.13"
version = "~> 3.5"
}

provider "null" {
Expand Down
2 changes: 1 addition & 1 deletion modules/mysql/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ variable "backup_configuration" {
})
default = {
binary_log_enabled = null
enabled = null
enabled = false
start_time = null
}
}
Expand Down
2 changes: 1 addition & 1 deletion modules/mysql/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
terraform {
required_version = "~> 0.12.6"
required_providers {
google = "~> 2.13"
google = "~> 3.5"
null = "~> 2.1"
random = "~> 2.2"
}
Expand Down
2 changes: 1 addition & 1 deletion modules/postgresql/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ variable "backup_configuration" {
})
default = {
binary_log_enabled = null
enabled = null
enabled = false
start_time = null
}
}
Expand Down
2 changes: 1 addition & 1 deletion modules/postgresql/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
terraform {
required_version = "~> 0.12.6"
required_providers {
google = "~> 2.13"
google = "~> 3.5"
null = "~> 2.1"
random = "~> 2.2"
}
Expand Down
4 changes: 2 additions & 2 deletions modules/private_service_access/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
terraform {
required_version = "~> 0.12.6"
required_providers {
google = "~> 2.13"
google-beta = "~> 2.13"
google = "~> 3.5"
google-beta = "~> 3.5"
null = "~> 2.1"
}
}
2 changes: 1 addition & 1 deletion modules/safer_mysql/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ variable "backup_configuration" {
})
default = {
binary_log_enabled = null
enabled = null
enabled = false
start_time = null
}
}
Expand Down

0 comments on commit 706b173

Please sign in to comment.