mirror of
https://github.com/status-im/consul.git
synced 2025-01-17 17:22:17 +00:00
3e6f1c1fe1
* remove v2 tenancy, catalog, and mesh - Inline the v2tenancy experiment to false - Inline the resource-apis experiment to false - Inline the hcp-v2-resource-apis experiment to false - Remove ACL policy templates and rule language changes related to workload identities (a v2-only concept) (e.g. identity and identity_prefix) - Update the gRPC endpoint used by consul-dataplane to no longer respond specially for v2 - Remove stray v2 references scattered throughout the DNS v1.5 newer implementation. * changelog * go mod tidy on consul containers * lint fixes from ENT --------- Co-authored-by: John Murret <john.murret@hashicorp.com>
51 lines
1.2 KiB
Go
51 lines
1.2 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build !consulent
|
|
|
|
package structs
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed acltemplatedpolicy/policies/ce/service.hcl
|
|
var ACLTemplatedPolicyService string
|
|
|
|
//go:embed acltemplatedpolicy/policies/ce/node.hcl
|
|
var ACLTemplatedPolicyNode string
|
|
|
|
//go:embed acltemplatedpolicy/policies/ce/dns.hcl
|
|
var ACLTemplatedPolicyDNS string
|
|
|
|
//go:embed acltemplatedpolicy/policies/ce/nomad-server.hcl
|
|
var ACLTemplatedPolicyNomadServer string
|
|
|
|
//go:embed acltemplatedpolicy/policies/ce/api-gateway.hcl
|
|
var ACLTemplatedPolicyAPIGateway string
|
|
|
|
//go:embed acltemplatedpolicy/policies/ce/nomad-client.hcl
|
|
var ACLTemplatedPolicyNomadClient string
|
|
|
|
func (t *ACLToken) TemplatedPolicyList() []*ACLTemplatedPolicy {
|
|
if len(t.TemplatedPolicies) == 0 {
|
|
return nil
|
|
}
|
|
|
|
out := make([]*ACLTemplatedPolicy, 0, len(t.TemplatedPolicies))
|
|
for _, n := range t.TemplatedPolicies {
|
|
out = append(out, n.Clone())
|
|
}
|
|
return out
|
|
}
|
|
|
|
func (t *ACLRole) TemplatedPolicyList() []*ACLTemplatedPolicy {
|
|
if len(t.TemplatedPolicies) == 0 {
|
|
return nil
|
|
}
|
|
|
|
out := make([]*ACLTemplatedPolicy, 0, len(t.TemplatedPolicies))
|
|
for _, n := range t.TemplatedPolicies {
|
|
out = append(out, n.Clone())
|
|
}
|
|
return out
|
|
}
|