Skip to content

Commit b221877

Browse files
fix(deps)!: bump log_export version to v10.0.0 (#271)
1 parent 215da5e commit b221877

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

examples/automatic-labelling-folder/main.tf

+2
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ resource "google_project" "test" {
8080
]
8181
}
8282

83+
deletion_policy = "DELETE"
84+
8385
depends_on = [null_resource.wait_for_function]
8486
}
8587

modules/event-folder-log-entry/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ locals {
2121

2222
module "log_export" {
2323
source = "terraform-google-modules/log-export/google"
24-
version = "~> 8.0"
24+
version = "~> 10.0"
2525

2626
destination_uri = local.destination_uri
2727
filter = var.filter

modules/event-project-log-entry/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ locals {
2121

2222
module "log_export" {
2323
source = "terraform-google-modules/log-export/google"
24-
version = "~> 8.0"
24+
version = "~> 10.0"
2525

2626
destination_uri = local.destination_uri
2727
filter = var.filter

test/integration/dynamic-files/dynamic_files_test.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ package dynamic_files
1818
import (
1919
"fmt"
2020
"testing"
21+
"time"
2122

2223
// import the blueprints test framework modules for testing and assertions
2324
"github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test/pkg/gcloud"
@@ -26,7 +27,13 @@ import (
2627
)
2728

2829
func TestDynamicFiles(t *testing.T) {
29-
bpt := tft.NewTFBlueprintTest(t)
30+
RetryableTransientErrors := map[string]string{
31+
".*Error code 13, message: Gen1 operation for function .* failed: Failed to configure trigger providers/cloud.storage/eventTypes/object.change.*": "Retry Cloud Function Creation",
32+
}
33+
34+
bpt := tft.NewTFBlueprintTest(t,
35+
tft.WithRetryableTerraformErrors(RetryableTransientErrors, 3, 30*time.Second),
36+
)
3037

3138
bpt.DefineVerify(func(assert *assert.Assertions) {
3239
bpt.DefaultVerify(assert)

0 commit comments

Comments
 (0)