Skip to content

Commit

Permalink
fix(deps)!: Update TF modules
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 13, 2023
1 parent 981a967 commit 1d1fef7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion modules/gh-runner-gke/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ resource "google_compute_subnetwork" "gh-subnetwork" {
*****************************************/
module "runner-cluster" {
source = "terraform-google-modules/kubernetes-engine/google//modules/beta-public-cluster/"
version = "~> 24.0"
version = "~> 28.0"
project_id = var.project_id
name = "gh-runner-${var.repo_name}"
regional = false
Expand Down
4 changes: 2 additions & 2 deletions modules/gh-runner-mig-container-vm/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ module "gce-container" {

module "mig_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 7.0"
version = "~> 10.0"
project_id = var.project_id
region = var.region
network = local.network_name
Expand Down Expand Up @@ -184,7 +184,7 @@ module "mig_template" {
*****************************************/
module "mig" {
source = "terraform-google-modules/vm/google//modules/mig"
version = "~> 7.0"
version = "~> 10.0"
project_id = var.project_id
subnetwork_project = var.project_id
hostname = local.instance_name
Expand Down
4 changes: 2 additions & 2 deletions modules/gh-runner-mig-vm/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ locals {

module "mig_template" {
source = "terraform-google-modules/vm/google//modules/instance_template"
version = "~> 7.0"
version = "~> 10.0"
project_id = var.project_id
machine_type = var.machine_type
network = local.network_name
Expand Down Expand Up @@ -154,7 +154,7 @@ module "mig_template" {
*****************************************/
module "mig" {
source = "terraform-google-modules/vm/google//modules/mig"
version = "~> 7.0"
version = "~> 10.0"
project_id = var.project_id
subnetwork_project = var.project_id
hostname = local.instance_name
Expand Down

0 comments on commit 1d1fef7

Please sign in to comment.