2023-03-28 18:39:22 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
2023-08-11 13:12:13 +00:00
|
|
|
// SPDX-License-Identifier: BUSL-1.1
|
2023-03-28 18:39:22 +00:00
|
|
|
|
2022-06-15 19:36:18 +00:00
|
|
|
//go:build !consulent
|
|
|
|
|
|
|
|
package connect
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/acl"
|
|
|
|
)
|
|
|
|
|
|
|
|
// GetEnterpriseMeta will synthesize an EnterpriseMeta struct from the SpiffeIDAgent.
|
2023-08-22 14:46:03 +00:00
|
|
|
// in CE this just returns an empty (but never nil) struct pointer
|
2022-06-15 19:36:18 +00:00
|
|
|
func (id SpiffeIDMeshGateway) GetEnterpriseMeta() *acl.EnterpriseMeta {
|
|
|
|
return &acl.EnterpriseMeta{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (id SpiffeIDMeshGateway) uriPath() string {
|
|
|
|
return fmt.Sprintf("/gateway/mesh/dc/%s", id.Datacenter)
|
|
|
|
}
|