diff --git a/pkg/controller/cluster/log-search.go b/pkg/controller/cluster/log-search.go index 02ebbce858e..49a4a0b8eec 100644 --- a/pkg/controller/cluster/log-search.go +++ b/pkg/controller/cluster/log-search.go @@ -35,7 +35,7 @@ func newAuditWebhookConfig(tenant *miniov1.Tenant, secret *corev1.Secret) auditW whTarget := fmt.Sprintf("audit_webhook:%s", tenant.LogSearchAPIDeploymentName()) logIngestEndpoint := fmt.Sprintf("%s/%s?token=%s", services.GetLogSearchAPIAddr(tenant), "api/ingest", auditToken) - whArgs := fmt.Sprintf("%s auth_token=\"\" endpoint=\"%s\"", whTarget, logIngestEndpoint) + whArgs := fmt.Sprintf("%s endpoint=\"%s\"", whTarget, logIngestEndpoint) return auditWebhookConfig{ target: whTarget, args: whArgs,