Skip to content

Commit 25d1840

Browse files
chore(deps): Update Terraform terraform-google-modules/vm/google to v14
1 parent df25433 commit 25d1840

File tree

21 files changed

+35
-35
lines changed

21 files changed

+35
-35
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 = "~> 13.0"
30+
version = "~> 14.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 = "~> 13.0"
62+
version = "~> 14.0"
6363

6464
project_id = var.project_id
6565
region = var.region
@@ -71,7 +71,7 @@ module "compute_instance" {
7171

7272
module "disk_snapshots" {
7373
source = "terraform-google-modules/vm/google//modules/compute_disk_snapshot"
74-
version = "~> 13.0"
74+
version = "~> 14.0"
7575

7676
name = "backup-policy-test"
7777
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 = "~> 13.0"
19+
version = "~> 14.0"
2020

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

2828
module "compute_instance" {
2929
source = "terraform-google-modules/vm/google//modules/compute_instance"
30-
version = "~> 13.0"
30+
version = "~> 14.0"
3131

3232
project_id = var.project_id
3333
region = var.region

examples/confidential_computing/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ resource "google_kms_crypto_key_iam_binding" "crypto_key" {
6666

6767
module "instance_template" {
6868
source = "terraform-google-modules/vm/google//modules/instance_template"
69-
version = "~> 13.0"
69+
version = "~> 14.0"
7070

7171
region = var.region
7272
project_id = var.project_id
@@ -89,7 +89,7 @@ module "instance_template" {
8989

9090
module "compute_instance" {
9191
source = "terraform-google-modules/vm/google//modules/compute_instance"
92-
version = "~> 13.0"
92+
version = "~> 14.0"
9393

9494
project_id = var.project_id
9595
region = var.region

examples/confidential_computing_intel/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ module "instance_template" {
8989

9090
module "compute_instance" {
9191
source = "terraform-google-modules/vm/google//modules/compute_instance"
92-
version = "~> 13.0"
92+
version = "~> 14.0"
9393

9494
project_id = var.project_id
9595
region = var.region

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 = "~> 13.0"
25+
version = "~> 14.0"
2626

2727
project_id = var.project_id
2828
region = var.region

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 = "~> 13.0"
29+
version = "~> 14.0"
3030

3131
project_id = var.project_id
3232
region = var.region

examples/instance_template/confidential_computing/main.tf

Lines changed: 1 addition & 1 deletion
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 = "~> 13.0"
19+
version = "~> 14.0"
2020

2121
region = var.region
2222
project_id = var.project_id

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 = "~> 13.0"
40+
version = "~> 14.0"
4141

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

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 = "~> 13.0"
36+
version = "~> 14.0"
3737

3838
project_id = var.project_id
3939
region = var.region

examples/it_simple_with_sa_creation/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ resource "google_compute_subnetwork" "main" {
5353

5454
module "instance_template" {
5555
source = "terraform-google-modules/vm/google//modules/instance_template"
56-
version = "~> 13.0"
56+
version = "~> 14.0"
5757

5858
project_id = var.project_id
5959
region = "us-central1"

0 commit comments

Comments
 (0)