Update Traffic_Policies-Traffic_Settings-Traffic_logging.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Has been cancelled

This commit is contained in:
2025-11-18 20:21:22 +01:00
parent ae9661f458
commit bec9927a1e

View File

@@ -3,21 +3,21 @@
# ============================================================================= # =============================================================================
# #
resource "cloudflare_zero_trust_gateway_logging" "example_zero_trust_gateway_logging" { resource "cloudflare_zero_trust_gateway_logging" "zero_trust_gateway_logging" {
account_id = local.cloudflare_account_id account_id = local.cloudflare_account_id
redact_pii = true redact_pii = true
settings_by_rule_type = { settings_by_rule_type = {
dns = { dns = {
log_all = false log_all = true
log_blocks = true log_blocks = false
} }
http = { http = {
log_all = false log_all = true
log_blocks = true log_blocks = false
} }
l4 = { l4 = {
log_all = false log_all = true
log_blocks = true log_blocks = false
} }
} }
} }