diff --git a/vault/identity_store_oss.go b/vault/identity_store_oss.go index 18e29e6091..62cbebaa94 100644 --- a/vault/identity_store_oss.go +++ b/vault/identity_store_oss.go @@ -9,6 +9,7 @@ import ( "context" "github.com/hashicorp/vault/helper/identity" + "github.com/hashicorp/vault/sdk/framework" ) func (c *Core) SendGroupUpdate(context.Context, *identity.Group) error { @@ -18,3 +19,7 @@ func (c *Core) SendGroupUpdate(context.Context, *identity.Group) error { func (c *Core) CreateEntity(ctx context.Context) (*identity.Entity, error) { return nil, nil } + +func mfaLoginEnterprisePaths(i *IdentityStore) []*framework.Path { + return []*framework.Path{} +}