Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): Update Terraform terraform-google-modules/vm/google to v12 #107

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
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