File tree Expand file tree Collapse file tree 6 files changed +9
-10
lines changed
examples/safer_cluster_iap_bastion Expand file tree Collapse file tree 6 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 1818# Make will use bash instead of sh
1919SHELL := /usr/bin/env bash
2020
21- DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.0
21+ DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.5
2222DOCKER_IMAGE_DEVELOPER_TOOLS := cft/developer-tools
2323REGISTRY_URL := gcr.io/cloud-foundation-cicd
2424DOCKER_BIN ?= docker
Original file line number Diff line number Diff line change @@ -361,6 +361,6 @@ tags:
361361- ' integration'
362362substitutions :
363363 _DOCKER_IMAGE_DEVELOPER_TOOLS : ' cft/developer-tools'
364- _DOCKER_TAG_VERSION_DEVELOPER_TOOLS : ' 1.4 '
364+ _DOCKER_TAG_VERSION_DEVELOPER_TOOLS : ' 1.5 '
365365options :
366366 machineType : ' N1_HIGHCPU_8'
Original file line number Diff line number Diff line change 2222- ' lint'
2323substitutions :
2424 _DOCKER_IMAGE_DEVELOPER_TOOLS : ' cft/developer-tools'
25- _DOCKER_TAG_VERSION_DEVELOPER_TOOLS : ' 1.4 '
25+ _DOCKER_TAG_VERSION_DEVELOPER_TOOLS : ' 1.5 '
2626options :
2727 machineType : ' N1_HIGHCPU_8'
2828 env :
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ data "template_file" "startup_script" {
2828
2929module "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 ]
@@ -37,7 +37,6 @@ module "bastion" {
3737 name = local. bastion_name
3838 zone = local. bastion_zone
3939 image_project = " debian-cloud"
40- image_family = " debian-9"
4140 machine_type = " g1-small"
4241 startup_script = data. template_file . startup_script . rendered
4342 members = var. bastion_members
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ locals {
4646
4747module "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
7070module "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
9292module "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
Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ terraform {
1919 required_providers {
2020 google = {
2121 source = " hashicorp/google"
22- version = " 4.1.0 "
22+ version = " ~> 4.1"
2323 }
2424 google-beta = {
2525 source = " hashicorp/google-beta"
26- version = " 4.3.0 "
26+ version = " ~> 4.3"
2727 }
2828 random = {
2929 source = " hashicorp/random"
You can’t perform that action at this time.
0 commit comments