Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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