Skip to content

Commit

Permalink
Merge branch 'master' into terraform-1-3
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-cit authored Oct 10, 2022
2 parents 4d30080 + 1c74604 commit 3efc4c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 3-networks-hub-and-spoke/modules/transitivity/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module "service_account" {

module "templates" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "7.6.0"
version = "~> 7.9"
for_each = toset(var.regions)
can_ip_forward = true
disk_size_gb = 10
Expand Down
4 changes: 2 additions & 2 deletions 5-app-infra/modules/env_base/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ resource "google_service_account" "compute_engine_service_account" {

module "instance_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "7.8.0"
version = "~> 7.9"

machine_type = var.machine_type
region = var.region
Expand All @@ -60,7 +60,7 @@ module "instance_template" {

module "compute_instance" {
source = "terraform-google-modules/vm/google//modules/compute_instance"
version = "6.2.0"
version = "~> 7.9"

region = var.region
subnetwork = local.subnetwork_self_link
Expand Down

0 comments on commit 3efc4c2

Please sign in to comment.