Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps)!: Update Terraform terraform-google-modules/log-export/google to v10 #139

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 5-infrastructure/modules/base-env/boa-gke.tf
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ locals {

module "sink_gke" {
source = "terraform-google-modules/log-export/google"
version = "~> 6.0"
version = "~> 10.0"
destination_uri = module.log_destination.destination_uri
filter = "resource.type:(k8s_cluster OR k8s_container OR gce_target_https_proxy OR gce_url_map OR http_load_balancer OR gce_target_https_proxy OR gce_backend_service OR gce_instance OR gce_forwarding_rule OR gce_health_check OR service_account OR global OR audited_resource OR project)"
log_sink_name = "sink-boa-${local.envs[var.env].short}-gke-to-ops"
Expand Down
4 changes: 2 additions & 2 deletions 5-infrastructure/modules/base-env/boa-ops.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "sink_ops" {
source = "terraform-google-modules/log-export/google"
version = "~> 6.0"
version = "~> 10.0"
destination_uri = module.log_destination.destination_uri
filter = ""
log_sink_name = "sink-boa-${local.envs[var.env].short}-ops"
Expand All @@ -35,7 +35,7 @@ resource "random_string" "bucket_name" {

module "log_destination" {
source = "terraform-google-modules/log-export/google//modules/storage"
version = "~> 6.0"
version = "~> 10.0"
project_id = var.boa_ops_project_id
storage_bucket_name = "log-ops-${lower(var.location_secondary)}-01-${random_string.bucket_name.result}"
location = var.location_secondary
Expand Down
2 changes: 1 addition & 1 deletion 5-infrastructure/modules/base-env/boa-sec.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ locals {

module "sink_sec" {
source = "terraform-google-modules/log-export/google"
version = "~> 6.0"
version = "~> 10.0"
destination_uri = module.log_destination.destination_uri
filter = "resource.type:(cloudkms_keyring OR service_account OR global OR audited_resource OR project)"
log_sink_name = "sink-boa-${local.envs[var.env].short}-sec-to-ops"
Expand Down
2 changes: 1 addition & 1 deletion 5-infrastructure/modules/base-env/boa-sql.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ locals {

module "sink_sql" {
source = "terraform-google-modules/log-export/google"
version = "~> 6.0"
version = "~> 10.0"
destination_uri = module.log_destination.destination_uri
filter = "resource.type:(cloudsql_database OR service_account OR global OR audited_resource OR project)"
log_sink_name = "sink-boa-${local.envs[var.env].short}-sql-to-ops"
Expand Down