Skip to content

Commit

Permalink
chore(deps): Update Terraform terraform-google-modules/vm/google to v12
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 24, 2024
1 parent a8defef commit 0e613a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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 = "~> 11.0"
version = "~> 12.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 = "~> 11.0"
version = "~> 12.0"
region = var.region
target_size = 2
hostname = "mig-simple"
Expand Down
4 changes: 2 additions & 2 deletions examples/regional_proxy_lb_mig/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ locals {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 11.0"
version = "~> 12.0"
project_id = var.project_id
subnetwork = google_compute_subnetwork.default.id
machine_type = "e2-small"
Expand Down Expand Up @@ -64,7 +64,7 @@ module "instance_template" {

module "mig" {
source = "terraform-google-modules/vm/google//modules/mig"
version = "~> 11.0"
version = "~> 12.0"
project_id = var.project_id
region = var.region
target_size = 2
Expand Down

0 comments on commit 0e613a3

Please sign in to comment.