Skip to content

Commit dbe4c6e

Browse files
authored
Merge branch 'main' into network-dns-refactory
2 parents 5941cdf + 05cc26c commit dbe4c6e

File tree

13 files changed

+204
-84
lines changed

13 files changed

+204
-84
lines changed

.github/conventional-commit-lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022-2023 Google LLC
1+
# Copyright 2022-2025 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
# NOTE: This file is automatically generated from:
16-
# https://github.com/GoogleCloudPlatform/cloud-foundation-toolkit/blob/master/infra/terraform/test-org/github
16+
# https://github.com/GoogleCloudPlatform/cloud-foundation-toolkit/blob/main/infra/terraform/test-org/github
1717

1818
enabled: true
1919
always_check_pr_title: true

.github/trusted-contribution.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Google LLC
1+
# Copyright 2023-2025 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
# NOTE: This file is automatically generated from:
16-
# https://github.com/GoogleCloudPlatform/cloud-foundation-toolkit/blob/master/infra/terraform/test-org/github
16+
# https://github.com/GoogleCloudPlatform/cloud-foundation-toolkit/blob/main/infra/terraform/test-org/github
1717

1818
annotations:
1919
- type: comment

.github/workflows/lint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 Google LLC
1+
# Copyright 2023-2025 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -13,15 +13,15 @@
1313
# limitations under the License.
1414

1515
# NOTE: This file is automatically generated from values at:
16-
# https://github.com/GoogleCloudPlatform/cloud-foundation-toolkit/blob/master/infra/terraform/test-org/org/locals.tf
16+
# https://github.com/GoogleCloudPlatform/cloud-foundation-toolkit/blob/main/infra/terraform/test-org/org/locals.tf
1717

1818
name: 'lint'
1919

2020
on:
2121
workflow_dispatch:
2222
pull_request:
2323
branches:
24-
- master
24+
- main
2525

2626
concurrency:
2727
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'

.github/workflows/stale.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2022-2024 Google LLC
1+
# Copyright 2022-2025 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
# NOTE: This file is automatically generated from:
16-
# https://github.com/GoogleCloudPlatform/cloud-foundation-toolkit/blob/master/infra/terraform/test-org/github
16+
# https://github.com/GoogleCloudPlatform/cloud-foundation-toolkit/blob/main/infra/terraform/test-org/github
1717

1818
name: "Close stale issues"
1919
on:

CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# NOTE: This file is automatically generated from values at:
2-
# https://github.com/GoogleCloudPlatform/cloud-foundation-toolkit/blob/master/infra/terraform/test-org/org/locals.tf
2+
# https://github.com/GoogleCloudPlatform/cloud-foundation-toolkit/blob/main/infra/terraform/test-org/org/locals.tf
33

44
* @terraform-google-modules/cft-admins @eeaton @gtsorbo @rjerrems @sleighton2022
55

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.22
21+
DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.23
2222
DOCKER_IMAGE_DEVELOPER_TOOLS := cft/developer-tools
2323
REGISTRY_URL := gcr.io/cloud-foundation-cicd
2424

build/int.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,4 +175,4 @@ options:
175175
- 'TF_IN_AUTOMATION=true'
176176
substitutions:
177177
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
178-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.22'
178+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.23'

build/lint.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ tags:
2424
- 'lint'
2525
substitutions:
2626
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
27-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.22'
27+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.23'
2828
options:
2929
machineType: 'N1_HIGHCPU_8'
3030
env:

go.work

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.22
1+
go 1.22.7
22

33
use (
44
./test/integration

helpers/foundation-deployer/go.mod

Lines changed: 36 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,74 @@
11
module github.com/terraform-google-modules/terraform-example-foundation/helpers/foundation-deployer
22

3-
go 1.22
3+
go 1.22.7
44

5-
toolchain go1.22.6
5+
toolchain go1.23.4
66

77
require (
8-
github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.16.1
9-
github.com/gruntwork-io/terratest v0.47.0
10-
github.com/hashicorp/hcl/v2 v2.21.0
8+
github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.17.3
9+
github.com/gruntwork-io/terratest v0.48.1
10+
github.com/hashicorp/hcl/v2 v2.23.0
1111
github.com/mitchellh/go-testing-interface v1.14.2-0.20210821155943-2d9075ca8770
12-
github.com/stretchr/testify v1.9.0
12+
github.com/stretchr/testify v1.10.0
1313
github.com/terraform-google-modules/terraform-example-foundation/test/integration v0.0.0-20240808135927-5f1fd0f4104a
14-
github.com/tidwall/gjson v1.17.3
14+
github.com/tidwall/gjson v1.18.0
1515
)
1616

1717
require (
18-
cloud.google.com/go v0.110.7 // indirect
19-
cloud.google.com/go/compute/metadata v0.3.0 // indirect
20-
cloud.google.com/go/iam v1.1.2 // indirect
21-
cloud.google.com/go/storage v1.33.0 // indirect
18+
cloud.google.com/go v0.116.0 // indirect
19+
cloud.google.com/go/compute/metadata v0.5.2 // indirect
20+
cloud.google.com/go/iam v1.2.2 // indirect
21+
cloud.google.com/go/storage v1.47.0 // indirect
2222
github.com/agext/levenshtein v1.2.3 // indirect
2323
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
2424
github.com/aws/aws-sdk-go v1.45.5 // indirect
2525
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
2626
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2727
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
28-
github.com/golang/protobuf v1.5.3 // indirect
28+
github.com/golang/protobuf v1.5.4 // indirect
2929
github.com/google/go-cmp v0.6.0 // indirect
30-
github.com/google/s2a-go v0.1.7 // indirect
31-
github.com/google/uuid v1.3.1 // indirect
32-
github.com/googleapis/enterprise-certificate-proxy v0.2.5 // indirect
33-
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
30+
github.com/google/s2a-go v0.1.8 // indirect
31+
github.com/google/uuid v1.6.0 // indirect
32+
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
33+
github.com/googleapis/gax-go/v2 v2.14.0 // indirect
3434
github.com/hashicorp/errwrap v1.1.0 // indirect
3535
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
3636
github.com/hashicorp/go-getter v1.7.5 // indirect
37+
github.com/hashicorp/go-getter/v2 v2.2.3 // indirect
3738
github.com/hashicorp/go-multierror v1.1.1 // indirect
3839
github.com/hashicorp/go-safetemp v1.0.0 // indirect
39-
github.com/hashicorp/go-version v1.6.0 // indirect
40-
github.com/hashicorp/terraform-json v0.22.1 // indirect
40+
github.com/hashicorp/go-version v1.7.0 // indirect
41+
github.com/hashicorp/terraform-json v0.23.0 // indirect
4142
github.com/jinzhu/copier v0.4.0 // indirect
4243
github.com/jmespath/go-jmespath v0.4.0 // indirect
4344
github.com/klauspost/compress v1.16.7 // indirect
45+
github.com/mattn/go-shellwords v1.0.12 // indirect
4446
github.com/mattn/go-zglob v0.0.4 // indirect
4547
github.com/mitchellh/go-homedir v1.1.0 // indirect
4648
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
4749
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
4850
github.com/tidwall/match v1.1.1 // indirect
4951
github.com/tidwall/pretty v1.2.1 // indirect
5052
github.com/tidwall/sjson v1.2.5 // indirect
51-
github.com/tmccombs/hcl2json v0.6.0 // indirect
53+
github.com/tmccombs/hcl2json v0.6.4 // indirect
5254
github.com/ulikunitz/xz v0.5.11 // indirect
53-
github.com/zclconf/go-cty v1.14.4 // indirect
55+
github.com/zclconf/go-cty v1.15.0 // indirect
5456
go.opencensus.io v0.24.0 // indirect
55-
golang.org/x/crypto v0.21.0 // indirect
56-
golang.org/x/mod v0.19.0 // indirect
57-
golang.org/x/net v0.23.0 // indirect
58-
golang.org/x/oauth2 v0.22.0 // indirect
59-
golang.org/x/sync v0.4.0 // indirect
60-
golang.org/x/sys v0.18.0 // indirect
61-
golang.org/x/text v0.14.0 // indirect
62-
golang.org/x/tools v0.13.0 // indirect
57+
golang.org/x/crypto v0.29.0 // indirect
58+
golang.org/x/mod v0.22.0 // indirect
59+
golang.org/x/net v0.31.0 // indirect
60+
golang.org/x/oauth2 v0.24.0 // indirect
61+
golang.org/x/sync v0.10.0 // indirect
62+
golang.org/x/sys v0.27.0 // indirect
63+
golang.org/x/text v0.20.0 // indirect
64+
golang.org/x/tools v0.22.0 // indirect
6365
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
64-
google.golang.org/api v0.138.0 // indirect
66+
google.golang.org/api v0.206.0 // indirect
6567
google.golang.org/appengine v1.6.8 // indirect
66-
google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d // indirect
67-
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect
68-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
69-
google.golang.org/grpc v1.58.3 // indirect
70-
google.golang.org/protobuf v1.33.0 // indirect
68+
google.golang.org/genproto v0.0.0-20241113202542-65e8d215514f // indirect
69+
google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 // indirect
70+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28 // indirect
71+
google.golang.org/grpc v1.67.1 // indirect
72+
google.golang.org/protobuf v1.35.1 // indirect
7173
gopkg.in/yaml.v3 v3.0.1 // indirect
7274
)

0 commit comments

Comments
 (0)