mirror of https://github.com/status-im/consul.git
14 lines
352 B
Protocol Buffer
14 lines
352 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package hashicorp.consul.auth.v1alpha1;
|
|
|
|
import "pbauth/v1alpha1/traffic_permissions.proto";
|
|
import "pbresource/annotations.proto";
|
|
|
|
message ComputedTrafficPermissions {
|
|
option (hashicorp.consul.resource.spec) = {scope: SCOPE_NAMESPACE};
|
|
|
|
repeated Permission allow_permissions = 1;
|
|
repeated Permission deny_permissions = 2;
|
|
}
|