Add example with transparent proxy and E2E test

This commit is contained in:
Wiktor Niesiobędzki
2025-03-18 20:11:25 +00:00
committed by Wiktor Niesiobędzki
parent ffb1452dbd
commit eba82f67c5
6 changed files with 170 additions and 2 deletions

View File

@@ -60,6 +60,8 @@ resource "google_network_security_tls_inspection_policy" "default" {
description = coalesce(var.tls_inspection_config.create_config.description, var.description)
ca_pool = var.tls_inspection_config.create_config.ca_pool
exclude_public_ca_set = var.tls_inspection_config.create_config.exclude_public_ca_set
min_tls_version = "TLS_VERSION_UNSPECIFIED" # to avoid drift, not supported by Secure Web Proxy
tls_feature_profile = "PROFILE_UNSPECIFIED" # to avoid drift, not supported by Secure Web Proxy
}
moved {