mirror of
https://github.com/status-im/consul.git
synced 2025-01-27 14:05:45 +00:00
e5808d85f7
* add workload identity and traffic permission protos * register new types * add generated pb code * fix exports.go path * add proto newlines * fix type name Co-authored-by: Eric Haberkorn <erichaberkorn@gmail.com> * address review * fix protos and add tests * fix validation constraints * add tests --------- Co-authored-by: Eric Haberkorn <erichaberkorn@gmail.com>
11 lines
242 B
Protocol Buffer
11 lines
242 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package hashicorp.consul.auth.v1alpha1;
|
|
|
|
import "pbauth/v1alpha1/traffic_permissions.proto";
|
|
|
|
message ComputedTrafficPermissions {
|
|
repeated Permission allow_permissions = 1;
|
|
repeated Permission deny_permissions = 2;
|
|
}
|