Skip to content

Commit 8e3b0e6

Browse files
committed
Update CFT and Modules
1 parent 8c6b860 commit 8e3b0e6

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# Make will use bash instead of sh
1919
SHELL := /usr/bin/env bash
2020

21-
DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.0
21+
DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.5
2222
DOCKER_IMAGE_DEVELOPER_TOOLS := cft/developer-tools
2323
REGISTRY_URL := gcr.io/cloud-foundation-cicd
2424
DOCKER_BIN ?= docker

build/int.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,6 @@ tags:
361361
- 'integration'
362362
substitutions:
363363
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
364-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.4'
364+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.5'
365365
options:
366366
machineType: 'N1_HIGHCPU_8'

build/lint.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ tags:
2222
- 'lint'
2323
substitutions:
2424
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
25-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.4'
25+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.5'
2626
options:
2727
machineType: 'N1_HIGHCPU_8'
2828
env:

examples/safer_cluster_iap_bastion/bastion.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ data "template_file" "startup_script" {
2828

2929
module "bastion" {
3030
source = "terraform-google-modules/bastion-host/google"
31-
version = "~> 4.1"
31+
version = "~> 5.0"
3232

3333
network = module.vpc.network_self_link
3434
subnet = module.vpc.subnets_self_links[0]

test/setup/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ locals {
4646

4747
module "gke-project-1" {
4848
source = "terraform-google-modules/project-factory/google"
49-
version = "~> 11.3"
49+
version = "~> 13.0"
5050

5151
name = "ci-gke-${random_id.random_project_id_suffix.hex}"
5252
random_project_id = true
@@ -69,7 +69,7 @@ module "gke-project-1" {
6969

7070
module "gke-project-2" {
7171
source = "terraform-google-modules/project-factory/google"
72-
version = "~> 11.3"
72+
version = "~> 13.0"
7373

7474
name = "ci-gke-${random_id.random_project_id_suffix.hex}"
7575
random_project_id = true
@@ -91,7 +91,7 @@ module "gke-project-2" {
9191
# apis as documented https://cloud.google.com/service-mesh/docs/scripted-install/reference#setting_up_your_project
9292
module "gke-project-asm" {
9393
source = "terraform-google-modules/project-factory/google"
94-
version = "~> 11.3"
94+
version = "~> 13.0"
9595

9696
name = "ci-gke-asm-${random_id.random_project_id_suffix.hex}"
9797
random_project_id = true

0 commit comments

Comments
 (0)