Skip to content

Commit

Permalink
chore(deps)!: update tf modules (#115)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Peabody <andrewpeabody@google.com>
  • Loading branch information
renovate[bot] and apeabody committed Nov 11, 2022
1 parent 3c74c2f commit d78bbdf
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/memcache/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "private-service-access" {
source = "GoogleCloudPlatform/sql-db/google//modules/private_service_access"
version = "~> 10"
version = "~> 12.0"
project_id = var.project_id
vpc_network = module.test-vpc-module.network_name
depends_on = [
Expand Down
2 changes: 1 addition & 1 deletion examples/memcache/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "test-vpc-module" {
source = "terraform-google-modules/network/google"
version = "~> 4"
version = "~> 5.2"
project_id = var.project_id
network_name = "test-net"
mtu = 1460
Expand Down
2 changes: 1 addition & 1 deletion examples/minimal/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "test-vpc-module" {
source = "terraform-google-modules/network/google"
version = "~> 4"
version = "~> 5.2"
project_id = var.project_id
network_name = "test-net-minimal"
mtu = 1460
Expand Down
2 changes: 1 addition & 1 deletion examples/redis/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "test-vpc-module" {
source = "terraform-google-modules/network/google"
version = "~> 4"
version = "~> 5.2"
project_id = var.project_id
network_name = "test-net-redis"
mtu = 1460
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ resource "google_redis_instance" "default" {

module "enable_apis" {
source = "terraform-google-modules/project-factory/google//modules/project_services"
version = "~> 11.0"
version = "~> 14.0"

project_id = var.project
enable_apis = var.enable_apis
Expand Down
2 changes: 1 addition & 1 deletion modules/memcache/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ resource "google_memcache_instance" "self" {

module "enable_apis" {
source = "terraform-google-modules/project-factory/google//modules/project_services"
version = "~> 11.0"
version = "~> 14.0"

project_id = var.project
enable_apis = var.enable_apis
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 = "~> 10.2"
version = "~> 14.0"

name = "ci-memory-store"
random_project_id = true
Expand Down

0 comments on commit d78bbdf

Please sign in to comment.