546a8bfb95
Add the ingress gateway example from the noamd connect examples to the e2e Connect suite. Includes the ACLs enabled version, which means the nomad server consul acl policy will require operator=write permission.
19 lines
376 B
HCL
19 lines
376 B
HCL
// The acl=write permission is required for generating Consul Service Identity
|
|
// tokens for consul connect services.
|
|
acl = "write"
|
|
|
|
// The operator=write permission is required for creating config entries for
|
|
// connect ingress gateways.
|
|
operator = "write"
|
|
|
|
service_prefix "" {
|
|
policy = "write"
|
|
}
|
|
|
|
agent_prefix "" {
|
|
policy = "read"
|
|
}
|
|
|
|
node_prefix "" {
|
|
policy = "read"
|
|
} |