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 v13 #458

Merged
merged 1 commit into from
Dec 18, 2024
Merged
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
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 = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.0"

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

module "compute_instance" {
source = "terraform-google-modules/vm/google//modules/compute_instance"
version = "~> 12.0"
version = "~> 13.0"

region = var.region
zone = var.zone
Expand Down
4 changes: 2 additions & 2 deletions examples/confidential_computing/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ resource "google_kms_crypto_key_iam_binding" "crypto_key" {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 12.0"
version = "~> 13.0"

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

module "compute_instance" {
source = "terraform-google-modules/vm/google//modules/compute_instance"
version = "~> 12.0"
version = "~> 13.0"

region = var.region
subnetwork = var.subnetwork
Expand Down
2 changes: 1 addition & 1 deletion examples/confidential_computing_intel/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ module "instance_template" {

module "compute_instance" {
source = "terraform-google-modules/vm/google//modules/compute_instance"
version = "~> 12.0"
version = "~> 13.0"

region = var.region
subnetwork = var.subnetwork
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 = "~> 12.0"
version = "~> 13.0"

project_id = var.project_id
region = var.region
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 = "~> 12.0"
version = "~> 13.0"

project_id = var.project_id
region = var.region
Expand Down
2 changes: 1 addition & 1 deletion examples/instance_template/confidential_computing/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 = "~> 12.0"
version = "~> 13.0"

region = var.region
project_id = var.project_id
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 = "~> 12.0"
version = "~> 13.0"

project_id = var.project_id
region = var.region
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 = "~> 12.0"
version = "~> 13.0"

project_id = var.project_id
region = var.region
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 = "~> 12.0"
version = "~> 13.0"

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

module "mig" {
source = "terraform-google-modules/vm/google//modules/mig"
version = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.0"

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

module "mig" {
source = "terraform-google-modules/vm/google//modules/mig"
version = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.0"

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

module "mig" {
source = "terraform-google-modules/vm/google//modules/mig"
version = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.0"

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

module "mig" {
source = "terraform-google-modules/vm/google//modules/mig"
version = "~> 12.0"
version = "~> 13.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 @@ -38,7 +38,7 @@ resource "google_compute_subnetwork" "main" {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 12.0"
version = "~> 13.0"

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

module "mig" {
source = "terraform-google-modules/vm/google//modules/mig"
version = "~> 12.0"
version = "~> 13.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,7 +28,7 @@ provider "google-beta" {

module "preemptible_and_regular_instance_templates" {
source = "terraform-google-modules/vm/google//modules/preemptible_and_regular_instance_templates"
version = "~> 12.0"
version = "~> 13.0"

project_id = var.project_id
region = var.region
Expand All @@ -38,7 +38,7 @@ module "preemptible_and_regular_instance_templates" {

module "mig_with_percent" {
source = "terraform-google-modules/vm/google//modules/mig_with_percent"
version = "~> 12.0"
version = "~> 13.0"

project_id = var.project_id
region = var.region
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 = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.0"

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

module "umig" {
source = "terraform-google-modules/vm/google//modules/umig"
version = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.0"

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

module "umig" {
source = "terraform-google-modules/vm/google//modules/umig"
version = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.0"

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

module "umig" {
source = "terraform-google-modules/vm/google//modules/umig"
version = "~> 12.0"
version = "~> 13.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 = "~> 12.0"
version = "~> 13.0"

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

module "umig" {
source = "terraform-google-modules/vm/google//modules/umig"
version = "~> 12.0"
version = "~> 13.0"

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