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

fix(deps)!: Update TF modules (major) - autoclosed #121

Closed
wants to merge 1 commit into from
Closed
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
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 = "~> 29.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
Loading