mirror of https://github.com/hashicorp/consul
25 lines
502 B
Go
25 lines
502 B
Go
|
// Copyright (c) HashiCorp, Inc.
|
||
|
// SPDX-License-Identifier: BUSL-1.1
|
||
|
|
||
|
//go:build !consulent
|
||
|
|
||
|
package structs
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/hashicorp/consul/acl"
|
||
|
)
|
||
|
|
||
|
func (e *JWTProviderConfigEntry) validatePartitionAndNamespace() error {
|
||
|
if !acl.IsDefaultPartition(e.PartitionOrDefault()) {
|
||
|
return fmt.Errorf("Partitions are an enterprise only feature")
|
||
|
}
|
||
|
|
||
|
if acl.DefaultNamespaceName != e.NamespaceOrDefault() {
|
||
|
return fmt.Errorf("Namespaces are an enterprise only feature")
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|