github.com/hernad/nomad@v1.6.112/e2e/terraform/etc/acls/consul/nomad-server-policy.hcl (about)

     1  # Copyright (c) HashiCorp, Inc.
     2  # SPDX-License-Identifier: MPL-2.0
     3  
     4  // The operator=write permission is required for creating config entries for
     5  // connect ingress gateways. operator ACLs are not namespaced, though the
     6  // config entries they can generate are.
     7  operator = "write"
     8  
     9  agent_prefix "" {
    10    policy = "read"
    11  }
    12  
    13  namespace_prefix "" {
    14    // The acl=write permission is required for generating Consul Service Identity
    15    // tokens for consul connect services. Those services could be configured for
    16    // any Consul namespace the job-submitter has access to.
    17    acl = "write"
    18  }
    19  
    20  service_prefix "" {
    21    policy = "write"
    22  }
    23  
    24  agent_prefix "" {
    25    policy = "read"
    26  }
    27  
    28  node_prefix "" {
    29    policy = "read"
    30  }