Skip to content

Commit

Permalink
chore: upgraded versions.tf to include minor bumps from tpg v5 (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
g-awmalik authored Nov 8, 2023
1 parent 3a0ed98 commit 0d5f47c
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# Make will use bash instead of sh
SHELL := /usr/bin/env bash

DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.13
DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.17
DOCKER_IMAGE_DEVELOPER_TOOLS := cft/developer-tools
REGISTRY_URL := gcr.io/cloud-foundation-cicd

Expand Down
2 changes: 1 addition & 1 deletion build/int.cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ tags:
- 'bats'
substitutions:
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.13'
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.17'
2 changes: 1 addition & 1 deletion build/lint.cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ tags:
- 'lint'
substitutions:
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.13'
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.17'
2 changes: 1 addition & 1 deletion examples/agent_policy_detailed_example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This example illustrates how to use the `agent-policy` module.

## Outputs

No output.
No outputs.

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

Expand Down
2 changes: 1 addition & 1 deletion examples/agent_policy_simple_example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This example illustrates how to use the `agent-policy` module.

## Outputs

No output.
No outputs.

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

Expand Down
2 changes: 1 addition & 1 deletion examples/agent_policy_update_example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This example is specifically for testing update functionality.

## Outputs

No output.
No outputs.

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

Expand Down
2 changes: 1 addition & 1 deletion modules/agent-policy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Functional examples are included in the [examples](./../../examples) directory.

## Outputs

No output.
No outputs.

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

Expand Down
2 changes: 1 addition & 1 deletion modules/simple-uptime-check/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ output "alert_policy_id" {

output "notification_channel_ids" {
description = "The ids of the notification channels"
value = values(google_monitoring_notification_channel.notification_channel).*.id
value = values(google_monitoring_notification_channel.notification_channel)[*].id
}
2 changes: 1 addition & 1 deletion modules/simple-uptime-check/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "~> 4.0"
version = ">= 4.0, < 6"
}
}

Expand Down

0 comments on commit 0d5f47c

Please sign in to comment.