mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-14 00:23:32 -05:00
9 lines
238 B
Go
9 lines
238 B
Go
|
|
// Copyright (c) HashiCorp, Inc.
|
||
|
|
// SPDX-License-Identifier: MPL-2.0
|
||
|
|
|
||
|
|
package pluginidentityutil
|
||
|
|
|
||
|
|
import "errors"
|
||
|
|
|
||
|
|
var ErrPluginWorkloadIdentityUnsupported = errors.New("plugin workload identity not supported in Vault community edition")
|