Skip to content

Commit

Permalink
chore(deps): Update Terraform terraform-google-modules/event-function…
Browse files Browse the repository at this point in the history
…/google to v4
  • Loading branch information
renovate[bot] authored Sep 5, 2024
1 parent 3edc311 commit 80b07a9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions examples/automatic-labelling-folder/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ resource "random_pet" "main" {

module "event_folder_log_entry" {
source = "terraform-google-modules/event-function/google//modules/event-folder-log-entry"
version = "~> 3.0"
version = "~> 4.0"

filter = <<EOF
resource.type="project" AND
Expand All @@ -35,7 +35,7 @@ EOF

module "localhost_function" {
source = "terraform-google-modules/event-function/google"
version = "~> 3.0"
version = "~> 4.0"

description = "Labels resource with owner information."
entry_point = "labelResource"
Expand Down
4 changes: 2 additions & 2 deletions examples/automatic-labelling-from-localhost/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ resource "random_pet" "main" {

module "event_project_log_entry" {
source = "terraform-google-modules/event-function/google//modules/event-project-log-entry"
version = "~> 3.0"
version = "~> 4.0"

filter = "protoPayload.@type=\"type.googleapis.com/google.cloud.audit.AuditLog\" protoPayload.methodName:insert operation.first=true"
name = random_pet.main.id
Expand All @@ -29,7 +29,7 @@ module "event_project_log_entry" {

module "localhost_function" {
source = "terraform-google-modules/event-function/google"
version = "~> 3.0"
version = "~> 4.0"

description = "Labels resource with owner information."
entry_point = "labelResource"
Expand Down
4 changes: 2 additions & 2 deletions examples/automatic-labelling-from-repository/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ resource "null_resource" "configure_repository" {

module "event_project_log_entry" {
source = "terraform-google-modules/event-function/google//modules/event-project-log-entry"
version = "~> 3.0"
version = "~> 4.0"

filter = "protoPayload.@type=\"type.googleapis.com/google.cloud.audit.AuditLog\" protoPayload.methodName:insert operation.first=true"
name = random_pet.main.id
Expand All @@ -50,7 +50,7 @@ module "event_project_log_entry" {

module "repository_function" {
source = "terraform-google-modules/event-function/google//modules/repository-function"
version = "~> 3.0"
version = "~> 4.0"

description = "Labels resource with owner information."
entry_point = "labelResource"
Expand Down
4 changes: 2 additions & 2 deletions examples/delete-vms-without-cmek/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ resource "random_pet" "main" {

module "event_project_log_entry" {
source = "terraform-google-modules/event-function/google//modules/event-project-log-entry"
version = "~> 3.0"
version = "~> 4.0"

filter = "resource.type=\"gce_instance\" jsonPayload.event_subtype=\"compute.instances.insert\" jsonPayload.event_type=\"GCE_OPERATION_DONE\""
name = random_pet.main.id
Expand All @@ -42,7 +42,7 @@ module "event_project_log_entry" {

module "localhost_function" {
source = "terraform-google-modules/event-function/google"
version = "~> 3.0"
version = "~> 4.0"

description = "Deletes VMs created with disks not encrypted with CMEK"
entry_point = "ReceiveMessage"
Expand Down
2 changes: 1 addition & 1 deletion examples/dynamic-files/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ resource "local_file" "file" {

module "localhost_function" {
source = "terraform-google-modules/event-function/google"
version = "~> 3.0"
version = "~> 4.0"

description = "Returns back the random file content"
entry_point = "fileContent"
Expand Down

0 comments on commit 80b07a9

Please sign in to comment.