Skip to content

Commit 978af95

Browse files
chore(deps): Update Terraform terraform-google-modules/log-export/google to v11 (#250)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 59d3f72 commit 978af95

File tree

19 files changed

+39
-39
lines changed

19 files changed

+39
-39
lines changed

examples/bigquery/billing_account/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module "log_export" {
1818
source = "terraform-google-modules/log-export/google"
19-
version = "~> 10.0"
19+
version = "~> 11.0"
2020

2121
destination_uri = module.destination.destination_uri
2222
log_sink_name = "bigquery_example_logsink"
@@ -27,7 +27,7 @@ module "log_export" {
2727

2828
module "destination" {
2929
source = "terraform-google-modules/log-export/google//modules/bigquery"
30-
version = "~> 10.0"
30+
version = "~> 11.0"
3131

3232
project_id = var.project_id
3333
dataset_name = "bigquery_example"

examples/bigquery/folder/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ resource "random_string" "suffix" {
2222

2323
module "log_export" {
2424
source = "terraform-google-modules/log-export/google"
25-
version = "~> 10.0"
25+
version = "~> 11.0"
2626

2727
destination_uri = module.destination.destination_uri
2828
filter = "resource.type = gce_instance"
@@ -34,7 +34,7 @@ module "log_export" {
3434

3535
module "destination" {
3636
source = "terraform-google-modules/log-export/google//modules/bigquery"
37-
version = "~> 10.0"
37+
version = "~> 11.0"
3838

3939
project_id = var.project_id
4040
dataset_name = "bq_folder_${random_string.suffix.result}"

examples/bigquery/organization/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ resource "random_string" "suffix" {
2222

2323
module "log_export" {
2424
source = "terraform-google-modules/log-export/google"
25-
version = "~> 10.0"
25+
version = "~> 11.0"
2626

2727
destination_uri = module.destination.destination_uri
2828
filter = "resource.type = gce_instance"
@@ -34,7 +34,7 @@ module "log_export" {
3434

3535
module "destination" {
3636
source = "terraform-google-modules/log-export/google//modules/bigquery"
37-
version = "~> 10.0"
37+
version = "~> 11.0"
3838

3939
project_id = var.project_id
4040
dataset_name = "bq_org_${random_string.suffix.result}"

examples/bigquery/project/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ resource "random_string" "suffix" {
2222

2323
module "log_export" {
2424
source = "terraform-google-modules/log-export/google"
25-
version = "~> 10.0"
25+
version = "~> 11.0"
2626

2727
destination_uri = module.destination.destination_uri
2828
filter = "resource.type = gce_instance"
@@ -34,7 +34,7 @@ module "log_export" {
3434

3535
module "destination" {
3636
source = "terraform-google-modules/log-export/google//modules/bigquery"
37-
version = "~> 10.0"
37+
version = "~> 11.0"
3838

3939
project_id = var.project_id
4040
dataset_name = "bq_project_${random_string.suffix.result}"

examples/bq-log-alerting/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module "bq-log-alerting" {
1818
source = "terraform-google-modules/log-export/google//modules/bq-log-alerting"
19-
version = "~> 10.0"
19+
version = "~> 11.0"
2020

2121
logging_project = var.logging_project
2222
bigquery_location = var.bigquery_location

examples/datadog-sink/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ resource "google_project_iam_member" "monitoring-viewer" {
5454

5555
module "log_export" {
5656
source = "terraform-google-modules/log-export/google"
57-
version = "~> 10.0"
57+
version = "~> 11.0"
5858

5959
destination_uri = module.destination.destination_uri
6060
log_sink_name = "test-datadog-sink"
@@ -65,7 +65,7 @@ module "log_export" {
6565

6666
module "destination" {
6767
source = "terraform-google-modules/log-export/google//modules/pubsub"
68-
version = "~> 10.0"
68+
version = "~> 11.0"
6969

7070
project_id = var.project_id
7171
topic_name = "datadog-sink"

examples/logbucket/folder/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ resource "random_string" "suffix" {
2222

2323
module "log_export" {
2424
source = "terraform-google-modules/log-export/google"
25-
version = "~> 10.0"
25+
version = "~> 11.0"
2626

2727
destination_uri = module.destination.destination_uri
2828
filter = "resource.type = gce_instance"
@@ -34,7 +34,7 @@ module "log_export" {
3434

3535
module "destination" {
3636
source = "terraform-google-modules/log-export/google//modules/logbucket"
37-
version = "~> 10.0"
37+
version = "~> 11.0"
3838

3939
project_id = var.project_id
4040
name = "logbucket_folder_${random_string.suffix.result}"

examples/logbucket/organization/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ resource "random_string" "suffix" {
2222

2323
module "log_export" {
2424
source = "terraform-google-modules/log-export/google"
25-
version = "~> 10.0"
25+
version = "~> 11.0"
2626

2727
destination_uri = module.destination.destination_uri
2828
filter = "resource.type = gce_instance"
@@ -34,7 +34,7 @@ module "log_export" {
3434

3535
module "destination" {
3636
source = "terraform-google-modules/log-export/google//modules/logbucket"
37-
version = "~> 10.0"
37+
version = "~> 11.0"
3838

3939
project_id = var.project_id
4040
name = "logbucket_org_${random_string.suffix.result}"

examples/logbucket/project/main.tf

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ resource "random_string" "suffix" {
2222

2323
module "log_export" {
2424
source = "terraform-google-modules/log-export/google"
25-
version = "~> 10.0"
25+
version = "~> 11.0"
2626

2727
destination_uri = module.destination.destination_uri
2828
filter = "resource.type = gce_instance"
@@ -34,7 +34,7 @@ module "log_export" {
3434

3535
module "destination" {
3636
source = "terraform-google-modules/log-export/google//modules/logbucket"
37-
version = "~> 10.0"
37+
version = "~> 11.0"
3838

3939
project_id = var.project_destination_logbkt_id
4040
name = "logbucket_from_other_prj_${random_string.suffix.result}"
@@ -50,7 +50,7 @@ module "destination" {
5050
#-------------------------------------#
5151
module "log_export_same_proj" {
5252
source = "terraform-google-modules/log-export/google"
53-
version = "~> 10.0"
53+
version = "~> 11.0"
5454

5555
destination_uri = module.dest_same_proj.destination_uri
5656
filter = "resource.type = gce_instance"
@@ -62,7 +62,7 @@ module "log_export_same_proj" {
6262

6363
module "dest_same_proj" {
6464
source = "terraform-google-modules/log-export/google//modules/logbucket"
65-
version = "~> 10.0"
65+
version = "~> 11.0"
6666

6767
project_id = var.project_destination_logbkt_id
6868
name = "logbucket_from_same_projct_${random_string.suffix.result}"

examples/project/project/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ resource "random_string" "suffix" {
2222

2323
module "log_export" {
2424
source = "terraform-google-modules/log-export/google"
25-
version = "~> 10.0"
25+
version = "~> 11.0"
2626

2727
destination_uri = module.destination.destination_uri
2828
filter = "resource.type = gce_instance"
@@ -34,7 +34,7 @@ module "log_export" {
3434

3535
module "destination" {
3636
source = "terraform-google-modules/log-export/google//modules/project"
37-
version = "~> 10.0"
37+
version = "~> 11.0"
3838

3939
project_id = var.project_id
4040
log_sink_writer_identity = module.log_export.writer_identity

examples/pubsub/billing_account/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module "log_export" {
1818
source = "terraform-google-modules/log-export/google"
19-
version = "~> 10.0"
19+
version = "~> 11.0"
2020

2121
destination_uri = module.destination.destination_uri
2222
log_sink_name = "pubsub_example_logsink"
@@ -27,7 +27,7 @@ module "log_export" {
2727

2828
module "destination" {
2929
source = "terraform-google-modules/log-export/google//modules/pubsub"
30-
version = "~> 10.0"
30+
version = "~> 11.0"
3131

3232
project_id = var.project_id
3333
topic_name = "pubsub-example"

examples/pubsub/folder/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ resource "random_string" "suffix" {
2222

2323
module "log_export" {
2424
source = "terraform-google-modules/log-export/google"
25-
version = "~> 10.0"
25+
version = "~> 11.0"
2626

2727
destination_uri = module.destination.destination_uri
2828
filter = "resource.type = gce_instance"
@@ -34,7 +34,7 @@ module "log_export" {
3434

3535
module "destination" {
3636
source = "terraform-google-modules/log-export/google//modules/pubsub"
37-
version = "~> 10.0"
37+
version = "~> 11.0"
3838

3939
project_id = var.project_id
4040
topic_name = "pubsub-folder-${random_string.suffix.result}"

examples/pubsub/organization/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ resource "random_string" "suffix" {
2222

2323
module "log_export" {
2424
source = "terraform-google-modules/log-export/google"
25-
version = "~> 10.0"
25+
version = "~> 11.0"
2626

2727
destination_uri = module.destination.destination_uri
2828
filter = "resource.type = gce_instance"
@@ -34,7 +34,7 @@ module "log_export" {
3434

3535
module "destination" {
3636
source = "terraform-google-modules/log-export/google//modules/pubsub"
37-
version = "~> 10.0"
37+
version = "~> 11.0"
3838

3939
project_id = var.project_id
4040
topic_name = "pubsub-org-${random_string.suffix.result}"

examples/pubsub/project/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ resource "random_string" "suffix" {
2222

2323
module "log_export" {
2424
source = "terraform-google-modules/log-export/google"
25-
version = "~> 10.0"
25+
version = "~> 11.0"
2626

2727
destination_uri = module.destination.destination_uri
2828
filter = "resource.type = gce_instance"
@@ -34,7 +34,7 @@ module "log_export" {
3434

3535
module "destination" {
3636
source = "terraform-google-modules/log-export/google//modules/pubsub"
37-
version = "~> 10.0"
37+
version = "~> 11.0"
3838

3939
project_id = var.project_id
4040
topic_labels = { topic_key : "topic_label" }

examples/splunk-sink/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
module "log_export" {
1919
source = "terraform-google-modules/log-export/google"
20-
version = "~> 10.0"
20+
version = "~> 11.0"
2121

2222
destination_uri = module.destination.destination_uri
2323
log_sink_name = "test-splunk-sink"
@@ -27,7 +27,7 @@ module "log_export" {
2727

2828
module "destination" {
2929
source = "terraform-google-modules/log-export/google//modules/pubsub"
30-
version = "~> 10.0"
30+
version = "~> 11.0"
3131

3232
project_id = var.project_id
3333
topic_name = "splunk-sink"

examples/storage/billing_account/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module "log_export" {
1818
source = "terraform-google-modules/log-export/google"
19-
version = "~> 10.0"
19+
version = "~> 11.0"
2020

2121
destination_uri = module.destination.destination_uri
2222
log_sink_name = "storage_example_logsink"
@@ -27,7 +27,7 @@ module "log_export" {
2727

2828
module "destination" {
2929
source = "terraform-google-modules/log-export/google//modules/storage"
30-
version = "~> 10.0"
30+
version = "~> 11.0"
3131

3232
project_id = var.project_id
3333
storage_bucket_name = "storage_example_bucket"

examples/storage/folder/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ resource "random_string" "suffix" {
2323

2424
module "log_export" {
2525
source = "terraform-google-modules/log-export/google"
26-
version = "~> 10.0"
26+
version = "~> 11.0"
2727

2828
destination_uri = module.destination.destination_uri
2929
filter = "resource.type = gce_instance"
@@ -35,7 +35,7 @@ module "log_export" {
3535

3636
module "destination" {
3737
source = "terraform-google-modules/log-export/google//modules/storage"
38-
version = "~> 10.0"
38+
version = "~> 11.0"
3939

4040
project_id = var.project_id
4141
storage_bucket_name = "storage_folder_${random_string.suffix.result}"

examples/storage/organization/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ resource "random_string" "suffix" {
2323

2424
module "log_export" {
2525
source = "terraform-google-modules/log-export/google"
26-
version = "~> 10.0"
26+
version = "~> 11.0"
2727

2828
destination_uri = module.destination.destination_uri
2929
filter = "resource.type = gce_instance"
@@ -35,7 +35,7 @@ module "log_export" {
3535

3636
module "destination" {
3737
source = "terraform-google-modules/log-export/google//modules/storage"
38-
version = "~> 10.0"
38+
version = "~> 11.0"
3939

4040
project_id = var.project_id
4141
storage_bucket_name = "storage_org_${random_string.suffix.result}"

examples/storage/project/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ resource "random_string" "suffix" {
2222

2323
module "log_export" {
2424
source = "terraform-google-modules/log-export/google"
25-
version = "~> 10.0"
25+
version = "~> 11.0"
2626

2727
destination_uri = module.destination.destination_uri
2828
filter = "resource.type = gce_instance"
@@ -34,7 +34,7 @@ module "log_export" {
3434

3535
module "destination" {
3636
source = "terraform-google-modules/log-export/google//modules/storage"
37-
version = "~> 10.0"
37+
version = "~> 11.0"
3838

3939
project_id = var.project_id
4040
storage_bucket_name = "storage_project_${random_string.suffix.result}"

0 commit comments

Comments
 (0)