You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ca: Fixed issue where using Vault as Connect CA with Vault-managed policies would error on start-up if the intermediate PKI mount existed but was empty
v.logger.Warn("Could not update intermediate PKI mount settings", "path", v.config.IntermediatePKIPath, "error", err)
419
+
ifv.isConsulMountedIntermediate {
420
+
v.logger.Warn("Intermediate PKI path was mounted by Consul but could not be tuned",
421
+
"namespace", v.config.IntermediatePKINamespace,
422
+
"path", v.config.IntermediatePKIPath,
423
+
"error", err,
424
+
)
425
+
} else {
426
+
v.logger.Debug("Failed to tune Intermediate PKI mount. 403 Forbidden is expected if Consul does not have tune capabilities for the Intermediate PKI mount (i.e. using Vault-managed policies)",
427
+
"namespace", v.config.IntermediatePKINamespace,
428
+
"path", v.config.IntermediatePKIPath,
429
+
"error", err,
430
+
)
431
+
}
432
+
393
433
}
394
434
}
395
435
396
-
// Create the role for issuing leaf certs if it doesn't exist yet
0 commit comments