Skip to content

Commit

Permalink
chore(deps): Update TF modules
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 11, 2023
1 parent c1baccb commit 3b6cf8f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ resource "google_service_account" "instance-group" {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 8.0"
version = "~> 9.0"
subnetwork = google_compute_subnetwork.subnetwork.self_link
source_image_family = var.image_family
source_image_project = var.image_project
Expand All @@ -42,7 +42,7 @@ module "instance_template" {

module "managed_instance_group" {
source = "terraform-google-modules/vm/google//modules/mig"
version = "~> 8.0"
version = "~> 9.0"
region = var.region
target_size = 2
hostname = "mig-simple"
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ module "cloud_nat" {
region = var.region
name = "load-balancer-module-nat"
source = "terraform-google-modules/cloud-nat/google"
version = "~> 2.2"
version = "~> 4.0"
router = google_compute_router.router.name
}

0 comments on commit 3b6cf8f

Please sign in to comment.