Skip to content

Commit 99ca563

Browse files
authored
chore: upgraded versions.tf to include minor bumps from tpg v5 (#148)
1 parent e5f8d2f commit 99ca563

File tree

11 files changed

+15
-21
lines changed

11 files changed

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

‎README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Then perform the following commands on the root folder:
6767
| time\_zone | The timezone to use in scheduler | `string` | `"Etc/UTC"` | no |
6868
| topic\_labels | A set of key/value label pairs to assign to the pubsub topic. | `map(string)` | `{}` | no |
6969
| topic\_name | Name of pubsub topic connecting the scheduled job and the function | `string` | `"test-topic"` | no |
70-
| vpc\_connector | The VPC Network Connector that this cloud function can connect to. It should be set up as fully-qualified URI. The format of this field is projects//locations//connectors/\*. | `string` | `null` | no |
70+
| vpc\_connector | The VPC Network Connector that this cloud function can connect to. It should be set up as fully-qualified URI. The format of this field is projects//locations//connectors/*. | `string` | `null` | no |
7171
| vpc\_connector\_egress\_settings | The egress settings for the connector, controlling what traffic is diverted through it. Allowed values are ALL\_TRAFFIC and PRIVATE\_RANGES\_ONLY. If unset, this field preserves the previously set value. | `string` | `null` | no |
7272

7373
## Outputs

‎build/int.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ tags:
3838
- 'integration'
3939
substitutions:
4040
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
41-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.13'
41+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.17'

‎build/lint.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ tags:
2121
- 'lint'
2222
substitutions:
2323
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
24-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.13'
24+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.17'

‎examples/logs-slack-alerts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ If not using the default App Engine default service account (PROJECT_ID@appspot.
2727

2828
## Outputs
2929

30-
No output.
30+
No outputs.
3131

3232
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

‎examples/logs-slack-alerts/versions.tf

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@
1717
terraform {
1818
required_providers {
1919
google = {
20-
source = "hashicorp/google"
21-
version = "~> 4.0"
20+
source = "hashicorp/google"
2221
}
2322
google-beta = {
24-
source = "hashicorp/google-beta"
25-
version = "~> 4.0"
23+
source = "hashicorp/google-beta"
2624
}
2725
}
2826
required_version = ">= 0.13"

‎examples/pubsub_scheduled/versions.tf

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@
1717
terraform {
1818
required_providers {
1919
google = {
20-
source = "hashicorp/google"
21-
version = "~> 4.0"
20+
source = "hashicorp/google"
2221
}
2322
google-beta = {
24-
source = "hashicorp/google-beta"
25-
version = "~> 4.0"
23+
source = "hashicorp/google-beta"
2624
}
2725
}
2826
required_version = ">= 0.13"

‎examples/pubsub_scheduled_multiple/versions.tf

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@
1717
terraform {
1818
required_providers {
1919
google = {
20-
source = "hashicorp/google"
21-
version = "~> 4.0"
20+
source = "hashicorp/google"
2221
}
2322
google-beta = {
24-
source = "hashicorp/google-beta"
25-
version = "~> 4.0"
23+
source = "hashicorp/google-beta"
2624
}
2725
}
2826
required_version = ">= 0.13"

‎modules/project_cleanup/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ terraform {
2020

2121
google = {
2222
source = "hashicorp/google"
23-
version = ">= 3.53, < 5.0"
23+
version = ">= 3.53, < 6"
2424
}
2525
}
2626

‎test/setup/versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ terraform {
1919
required_providers {
2020
google = {
2121
source = "hashicorp/google"
22-
version = ">= 3.53, < 5.0"
22+
version = ">= 3.53, < 6"
2323
}
2424
google-beta = {
2525
source = "hashicorp/google-beta"
26-
version = ">= 3.35, < 5.0"
26+
version = ">= 3.35, < 6"
2727
}
2828
}
2929
}

0 commit comments

Comments
 (0)