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 (#386)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] committed Mar 11, 2024
1 parent 8152084 commit 708a5ef
Show file tree
Hide file tree
Showing 17 changed files with 30 additions and 30 deletions.
6 changes: 3 additions & 3 deletions examples/compute_instance/disk_snapshot/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ data "google_compute_zones" "available" {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 10.0"
version = "~> 11.0"

region = var.region
project_id = var.project_id
Expand Down Expand Up @@ -59,7 +59,7 @@ module "instance_template" {

module "compute_instance" {
source = "terraform-google-modules/vm/google//modules/compute_instance"
version = "~> 10.0"
version = "~> 11.0"

region = var.region
subnetwork = var.subnetwork
Expand All @@ -70,7 +70,7 @@ module "compute_instance" {

module "disk_snapshots" {
source = "terraform-google-modules/vm/google//modules/compute_disk_snapshot"
version = "~> 10.0"
version = "~> 11.0"

name = "backup-policy-test"
project = var.project_id
Expand Down
4 changes: 2 additions & 2 deletions examples/compute_instance/simple/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 10.0"
version = "~> 11.0"

region = var.region
project_id = var.project_id
Expand All @@ -26,7 +26,7 @@ module "instance_template" {

module "compute_instance" {
source = "terraform-google-modules/vm/google//modules/compute_instance"
version = "~> 10.0"
version = "~> 11.0"

region = var.region
zone = var.zone
Expand Down
2 changes: 1 addition & 1 deletion examples/instance_template/additional_disks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ provider "google" {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 10.0"
version = "~> 11.0"

project_id = var.project_id
subnetwork = var.subnetwork
Expand Down
2 changes: 1 addition & 1 deletion examples/instance_template/alias_ip_range/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resource "google_compute_address" "ip_address" {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 10.0"
version = "~> 11.0"

project_id = var.project_id
subnetwork = var.subnetwork
Expand Down
2 changes: 1 addition & 1 deletion examples/instance_template/encrypted_disks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ resource "google_kms_crypto_key" "example-key" {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 10.0"
version = "~> 11.0"

project_id = var.project_id
subnetwork = var.subnetwork
Expand Down
2 changes: 1 addition & 1 deletion examples/instance_template/simple/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,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 = var.subnetwork
Expand Down
4 changes: 2 additions & 2 deletions examples/mig/autoscaler/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ provider "google-beta" {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 10.0"
version = "~> 11.0"

project_id = var.project_id
subnetwork = var.subnetwork
Expand All @@ -37,7 +37,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
Expand Down
4 changes: 2 additions & 2 deletions examples/mig/full/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ provider "google-beta" {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 10.0"
version = "~> 11.0"

name_prefix = "${var.hostname}-instance-template"
project_id = var.project_id
Expand Down Expand Up @@ -58,7 +58,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
hostname = var.hostname
Expand Down
4 changes: 2 additions & 2 deletions examples/mig/healthcheck/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ resource "google_compute_subnetwork" "main" {

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.main.name
Expand All @@ -63,7 +63,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
instance_template = module.instance_template.self_link
Expand Down
4 changes: 2 additions & 2 deletions examples/mig/simple/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ provider "google-beta" {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 10.0"
version = "~> 11.0"

project_id = var.project_id
subnetwork = var.subnetwork
Expand All @@ -36,7 +36,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
Expand Down
4 changes: 2 additions & 2 deletions examples/mig_stateful/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ resource "google_compute_subnetwork" "main" {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 10.0"
version = "~> 11.0"

project_id = var.project_id
region = var.region
Expand All @@ -55,7 +55,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
Expand Down
4 changes: 2 additions & 2 deletions examples/mig_with_percent/simple/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ provider "google-beta" {

module "preemptible_and_regular_instance_templates" {
source = "terraform-google-modules/vm/google//modules/preemptible_and_regular_instance_templates"
version = "~> 10.0"
version = "~> 11.0"

subnetwork = var.subnetwork
service_account = var.service_account
}

module "mig_with_percent" {
source = "terraform-google-modules/vm/google//modules/mig_with_percent"
version = "~> 10.0"
version = "~> 11.0"

region = var.region
target_size = 4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ provider "google" {

module "preemptible_and_regular_instance_templates" {
source = "terraform-google-modules/vm/google//modules/preemptible_and_regular_instance_templates"
version = "~> 10.0"
version = "~> 11.0"

subnetwork = var.subnetwork
project_id = var.project_id
Expand Down
4 changes: 2 additions & 2 deletions examples/umig/full/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ locals {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 10.0"
version = "~> 11.0"

name_prefix = "${var.hostname}-instance-template"
machine_type = var.machine_type
Expand Down Expand Up @@ -61,7 +61,7 @@ module "instance_template" {

module "umig" {
source = "terraform-google-modules/vm/google//modules/umig"
version = "~> 10.0"
version = "~> 11.0"

project_id = var.project_id
subnetwork = var.subnetwork
Expand Down
4 changes: 2 additions & 2 deletions examples/umig/named_ports/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ provider "google" {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 10.0"
version = "~> 11.0"

project_id = var.project_id
subnetwork = var.subnetwork
Expand All @@ -31,7 +31,7 @@ module "instance_template" {

module "umig" {
source = "terraform-google-modules/vm/google//modules/umig"
version = "~> 10.0"
version = "~> 11.0"

project_id = var.project_id
subnetwork = var.subnetwork
Expand Down
4 changes: 2 additions & 2 deletions examples/umig/simple/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ provider "google" {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 10.0"
version = "~> 11.0"

project_id = var.project_id
subnetwork = var.subnetwork
Expand All @@ -31,7 +31,7 @@ module "instance_template" {

module "umig" {
source = "terraform-google-modules/vm/google//modules/umig"
version = "~> 10.0"
version = "~> 11.0"

project_id = var.project_id
subnetwork = var.subnetwork
Expand Down
4 changes: 2 additions & 2 deletions examples/umig/static_ips/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ provider "google" {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 10.0"
version = "~> 11.0"

project_id = var.project_id
subnetwork = var.subnetwork
Expand All @@ -31,7 +31,7 @@ module "instance_template" {

module "umig" {
source = "terraform-google-modules/vm/google//modules/umig"
version = "~> 10.0"
version = "~> 11.0"

project_id = var.project_id
subnetwork = var.subnetwork
Expand Down

0 comments on commit 708a5ef

Please sign in to comment.