Skip to content

Commit

Permalink
chore(deps): Update Terraform terraform-google-modules/vm/google to v…
Browse files Browse the repository at this point in the history
…11 (#92)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Aug 16, 2024
1 parent a3a6f7b commit f092965
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 = "~> 10.0"
version = "~> 11.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 = "~> 10.0"
version = "~> 11.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 = "~> 10.0"
version = "~> 11.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 = "~> 10.0"
version = "~> 11.0"
project_id = var.project_id
region = var.region
target_size = 2
Expand Down

0 comments on commit f092965

Please sign in to comment.