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
secrets/pki: Enforce the issuer constraint extensions (extended key usage, name constraints, issuer name) when issuing or signing leaf certificates.
2
+
secrets/pki: Enforce the issuer constraint extensions (extended key usage, name constraints, issuer name) when issuing or signing leaf certificates. For more information see [PKI considerations](https://developer.hashicorp.com/vault/docs/secrets/pki/considerations#issuer-constraints-enforcement)
core/raft: Return an error on sys/storage/raft/join if a node that has been removed from raft cluster attempts to re-join when it still has existing raft data on disk.
// A list of Workload Identity Federation engines.
138
-
// Will eventually include Azure and GCP.
139
-
exportconstWIF_ENGINES=['aws'];
138
+
exportconstWIF_ENGINES=['aws','azure'];
140
139
141
140
exportfunctionwifEngines(){
142
141
returnWIF_ENGINES.slice();
143
142
}
144
143
144
+
// The UI only supports configuration views for these secrets engines. The CLI must be used to manage other engine resources (i.e. roles, credentials).
145
+
// Will eventually include gcp.
146
+
exportconstCONFIGURATION_ONLY=['azure'];
147
+
148
+
exportfunctionconfigurationOnly(){
149
+
returnCONFIGURATION_ONLY.slice();
150
+
}
151
+
145
152
// Secret engines that have their own configuration page and actions
146
153
// These engines do not exist in their own Ember engine.
0 commit comments