Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/Azure/aihub
Browse files Browse the repository at this point in the history
  • Loading branch information
heblasco committed Mar 6, 2024
2 parents 329bcec + aa4be3b commit d893f2d
Showing 1 changed file with 20 additions and 16 deletions.
36 changes: 20 additions & 16 deletions infra/modules/apim/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -129,30 +129,34 @@ resource "azurerm_api_management_diagnostic" "diagnostics" {
http_correlation_protocol = "W3C"

frontend_request {
body_bytes = 8192
headers_to_log = [
"custom-headers"
]
body_bytes = 8192
headers_to_log = []
data_masking {
query_params {
mode = "Hide"
value = "*"
}
}
}

frontend_response {
body_bytes = 8192
headers_to_log = [
"custom-headers"
]
body_bytes = 8192
headers_to_log = []
}

backend_request {
body_bytes = 8192
headers_to_log = [
"custom-headers"
]
body_bytes = 8192
headers_to_log = []
data_masking {
query_params {
mode = "Hide"
value = "*"
}
}
}

backend_response {
body_bytes = 8192
headers_to_log = [
"custom-headers"
]
body_bytes = 8192
headers_to_log = []
}
}

0 comments on commit d893f2d

Please sign in to comment.