Skip to content

Commit

Permalink
Merge branch 'master' into fix-sensitive-output-ca-cert
Browse files Browse the repository at this point in the history
  • Loading branch information
apeabody authored Nov 5, 2024
2 parents 6b01b1c + a47589e commit eb0ea50
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 @@ -51,7 +51,7 @@ resource "google_compute_subnetwork" "gh-subnetwork" {
*****************************************/
module "runner-cluster" {
source = "terraform-google-modules/kubernetes-engine/google//modules/beta-public-cluster/"
version = "~> 32.0"
version = "~> 33.0"
project_id = var.project_id
name = "gh-runner-${var.cluster_suffix}"
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 = "~> 11.0"
version = "~> 12.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 = "~> 11.0"
version = "~> 12.0"
project_id = var.project_id
hostname = local.instance_name
region = var.region
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 = "~> 11.0"
version = "~> 12.0"
project_id = var.project_id
machine_type = var.machine_type
network = local.network_name
Expand Down Expand Up @@ -152,7 +152,7 @@ module "mig_template" {
*****************************************/
module "mig" {
source = "terraform-google-modules/vm/google//modules/mig"
version = "~> 11.0"
version = "~> 12.0"
project_id = var.project_id
hostname = local.instance_name
region = var.region
Expand Down

0 comments on commit eb0ea50

Please sign in to comment.