mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-03 20:40:45 -05:00
Backport Add spiffe secrets engine into ce/main (#10648)
This commit is contained in:
parent
097417cd62
commit
edbc507488
3 changed files with 3 additions and 1 deletions
|
|
@ -110,7 +110,7 @@ func Test_RegistryKeyCounts(t *testing.T) {
|
|||
name: "number of secrets plugins",
|
||||
pluginType: consts.PluginTypeSecrets,
|
||||
want: 19,
|
||||
entWant: 3,
|
||||
entWant: 4,
|
||||
},
|
||||
}
|
||||
for _, tt := range tests {
|
||||
|
|
|
|||
|
|
@ -44,6 +44,7 @@ const (
|
|||
SecretEngineLDAP = "ldap"
|
||||
SecretEnginePostgresql = "postgresql"
|
||||
SecretEngineRabbitMQ = "rabbitmq"
|
||||
SecretEngineSpiffe = "spiffe"
|
||||
SecretEngineTerraform = "terraform"
|
||||
SecretEngineTOTP = "totp"
|
||||
SecretEngineKV = "kv"
|
||||
|
|
|
|||
|
|
@ -94,6 +94,7 @@ if vault version | grep -q "+ent"; then
|
|||
vault secrets enable "keymgmt"
|
||||
vault secrets enable "kmip"
|
||||
vault secrets enable "transform"
|
||||
vault secrets enable "spiffe"
|
||||
vault auth enable "saml"
|
||||
vault auth enable "scep"
|
||||
vault auth enable "spiffe"
|
||||
|
|
|
|||
Loading…
Reference in a new issue