Skip to content

Commit 708a5ef

Browse files
chore(deps): Update Terraform terraform-google-modules/vm/google to v11 (#386)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 8152084 commit 708a5ef

File tree

17 files changed

+30
-30
lines changed

17 files changed

+30
-30
lines changed

examples/compute_instance/disk_snapshot/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ data "google_compute_zones" "available" {
2727

2828
module "instance_template" {
2929
source = "terraform-google-modules/vm/google//modules/instance_template"
30-
version = "~> 10.0"
30+
version = "~> 11.0"
3131

3232
region = var.region
3333
project_id = var.project_id
@@ -59,7 +59,7 @@ module "instance_template" {
5959

6060
module "compute_instance" {
6161
source = "terraform-google-modules/vm/google//modules/compute_instance"
62-
version = "~> 10.0"
62+
version = "~> 11.0"
6363

6464
region = var.region
6565
subnetwork = var.subnetwork
@@ -70,7 +70,7 @@ module "compute_instance" {
7070

7171
module "disk_snapshots" {
7272
source = "terraform-google-modules/vm/google//modules/compute_disk_snapshot"
73-
version = "~> 10.0"
73+
version = "~> 11.0"
7474

7575
name = "backup-policy-test"
7676
project = var.project_id

examples/compute_instance/simple/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module "instance_template" {
1818
source = "terraform-google-modules/vm/google//modules/instance_template"
19-
version = "~> 10.0"
19+
version = "~> 11.0"
2020

2121
region = var.region
2222
project_id = var.project_id
@@ -26,7 +26,7 @@ module "instance_template" {
2626

2727
module "compute_instance" {
2828
source = "terraform-google-modules/vm/google//modules/compute_instance"
29-
version = "~> 10.0"
29+
version = "~> 11.0"
3030

3131
region = var.region
3232
zone = var.zone

examples/instance_template/additional_disks/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ provider "google" {
2222

2323
module "instance_template" {
2424
source = "terraform-google-modules/vm/google//modules/instance_template"
25-
version = "~> 10.0"
25+
version = "~> 11.0"
2626

2727
project_id = var.project_id
2828
subnetwork = var.subnetwork

examples/instance_template/alias_ip_range/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ resource "google_compute_address" "ip_address" {
2626

2727
module "instance_template" {
2828
source = "terraform-google-modules/vm/google//modules/instance_template"
29-
version = "~> 10.0"
29+
version = "~> 11.0"
3030

3131
project_id = var.project_id
3232
subnetwork = var.subnetwork

examples/instance_template/encrypted_disks/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ resource "google_kms_crypto_key" "example-key" {
3737

3838
module "instance_template" {
3939
source = "terraform-google-modules/vm/google//modules/instance_template"
40-
version = "~> 10.0"
40+
version = "~> 11.0"
4141

4242
project_id = var.project_id
4343
subnetwork = var.subnetwork

examples/instance_template/simple/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ locals {
3333

3434
module "instance_template" {
3535
source = "terraform-google-modules/vm/google//modules/instance_template"
36-
version = "~> 10.0"
36+
version = "~> 11.0"
3737

3838
project_id = var.project_id
3939
subnetwork = var.subnetwork

examples/mig/autoscaler/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ provider "google-beta" {
2828

2929
module "instance_template" {
3030
source = "terraform-google-modules/vm/google//modules/instance_template"
31-
version = "~> 10.0"
31+
version = "~> 11.0"
3232

3333
project_id = var.project_id
3434
subnetwork = var.subnetwork
@@ -37,7 +37,7 @@ module "instance_template" {
3737

3838
module "mig" {
3939
source = "terraform-google-modules/vm/google//modules/mig"
40-
version = "~> 10.0"
40+
version = "~> 11.0"
4141

4242
project_id = var.project_id
4343
region = var.region

examples/mig/full/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ provider "google-beta" {
2828

2929
module "instance_template" {
3030
source = "terraform-google-modules/vm/google//modules/instance_template"
31-
version = "~> 10.0"
31+
version = "~> 11.0"
3232

3333
name_prefix = "${var.hostname}-instance-template"
3434
project_id = var.project_id
@@ -58,7 +58,7 @@ module "instance_template" {
5858

5959
module "mig" {
6060
source = "terraform-google-modules/vm/google//modules/mig"
61-
version = "~> 10.0"
61+
version = "~> 11.0"
6262

6363
project_id = var.project_id
6464
hostname = var.hostname

examples/mig/healthcheck/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ resource "google_compute_subnetwork" "main" {
5252

5353
module "instance_template" {
5454
source = "terraform-google-modules/vm/google//modules/instance_template"
55-
version = "~> 10.0"
55+
version = "~> 11.0"
5656

5757
project_id = var.project_id
5858
subnetwork = google_compute_subnetwork.main.name
@@ -63,7 +63,7 @@ module "instance_template" {
6363

6464
module "mig" {
6565
source = "terraform-google-modules/vm/google//modules/mig"
66-
version = "~> 10.0"
66+
version = "~> 11.0"
6767

6868
project_id = var.project_id
6969
instance_template = module.instance_template.self_link

examples/mig/simple/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ provider "google-beta" {
2626

2727
module "instance_template" {
2828
source = "terraform-google-modules/vm/google//modules/instance_template"
29-
version = "~> 10.0"
29+
version = "~> 11.0"
3030

3131
project_id = var.project_id
3232
subnetwork = var.subnetwork
@@ -36,7 +36,7 @@ module "instance_template" {
3636

3737
module "mig" {
3838
source = "terraform-google-modules/vm/google//modules/mig"
39-
version = "~> 10.0"
39+
version = "~> 11.0"
4040

4141
project_id = var.project_id
4242
region = var.region

examples/mig_stateful/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ resource "google_compute_subnetwork" "main" {
4444

4545
module "instance_template" {
4646
source = "terraform-google-modules/vm/google//modules/instance_template"
47-
version = "~> 10.0"
47+
version = "~> 11.0"
4848

4949
project_id = var.project_id
5050
region = var.region
@@ -55,7 +55,7 @@ module "instance_template" {
5555

5656
module "mig" {
5757
source = "terraform-google-modules/vm/google//modules/mig"
58-
version = "~> 10.0"
58+
version = "~> 11.0"
5959

6060
project_id = var.project_id
6161
region = var.region

examples/mig_with_percent/simple/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ provider "google-beta" {
2828

2929
module "preemptible_and_regular_instance_templates" {
3030
source = "terraform-google-modules/vm/google//modules/preemptible_and_regular_instance_templates"
31-
version = "~> 10.0"
31+
version = "~> 11.0"
3232

3333
subnetwork = var.subnetwork
3434
service_account = var.service_account
3535
}
3636

3737
module "mig_with_percent" {
3838
source = "terraform-google-modules/vm/google//modules/mig_with_percent"
39-
version = "~> 10.0"
39+
version = "~> 11.0"
4040

4141
region = var.region
4242
target_size = 4

examples/preemptible_and_regular_instance_templates/simple/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ provider "google" {
2222

2323
module "preemptible_and_regular_instance_templates" {
2424
source = "terraform-google-modules/vm/google//modules/preemptible_and_regular_instance_templates"
25-
version = "~> 10.0"
25+
version = "~> 11.0"
2626

2727
subnetwork = var.subnetwork
2828
project_id = var.project_id

examples/umig/full/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ locals {
3232

3333
module "instance_template" {
3434
source = "terraform-google-modules/vm/google//modules/instance_template"
35-
version = "~> 10.0"
35+
version = "~> 11.0"
3636

3737
name_prefix = "${var.hostname}-instance-template"
3838
machine_type = var.machine_type
@@ -61,7 +61,7 @@ module "instance_template" {
6161

6262
module "umig" {
6363
source = "terraform-google-modules/vm/google//modules/umig"
64-
version = "~> 10.0"
64+
version = "~> 11.0"
6565

6666
project_id = var.project_id
6767
subnetwork = var.subnetwork

examples/umig/named_ports/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ provider "google" {
2222

2323
module "instance_template" {
2424
source = "terraform-google-modules/vm/google//modules/instance_template"
25-
version = "~> 10.0"
25+
version = "~> 11.0"
2626

2727
project_id = var.project_id
2828
subnetwork = var.subnetwork
@@ -31,7 +31,7 @@ module "instance_template" {
3131

3232
module "umig" {
3333
source = "terraform-google-modules/vm/google//modules/umig"
34-
version = "~> 10.0"
34+
version = "~> 11.0"
3535

3636
project_id = var.project_id
3737
subnetwork = var.subnetwork

examples/umig/simple/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ provider "google" {
2222

2323
module "instance_template" {
2424
source = "terraform-google-modules/vm/google//modules/instance_template"
25-
version = "~> 10.0"
25+
version = "~> 11.0"
2626

2727
project_id = var.project_id
2828
subnetwork = var.subnetwork
@@ -31,7 +31,7 @@ module "instance_template" {
3131

3232
module "umig" {
3333
source = "terraform-google-modules/vm/google//modules/umig"
34-
version = "~> 10.0"
34+
version = "~> 11.0"
3535

3636
project_id = var.project_id
3737
subnetwork = var.subnetwork

examples/umig/static_ips/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ provider "google" {
2222

2323
module "instance_template" {
2424
source = "terraform-google-modules/vm/google//modules/instance_template"
25-
version = "~> 10.0"
25+
version = "~> 11.0"
2626

2727
project_id = var.project_id
2828
subnetwork = var.subnetwork
@@ -31,7 +31,7 @@ module "instance_template" {
3131

3232
module "umig" {
3333
source = "terraform-google-modules/vm/google//modules/umig"
34-
version = "~> 10.0"
34+
version = "~> 11.0"
3535

3636
project_id = var.project_id
3737
subnetwork = var.subnetwork

0 commit comments

Comments
 (0)