Role Based Access Control (RBAC)

    As of Envoy v1.18 the v2 API has been removed and is no longer supported.

    If you are upgrading from v2 API config you may wish to view the v2 API documentation:

    [config.rbac.v3.RBAC proto]

    Role Based Access Control (RBAC) provides service-level and method-level access control for a service. Requests are allowed or denied based on the action and whether a matching policy is found. For instance, if the action is ALLOW and a matching policy is found the request should be allowed.

    RBAC can also be used to make access logging decisions by communicating with access loggers through dynamic metadata. When the action is LOG and at least one policy matches, the access_log_hint value in the shared key namespace ‘envoy.common’ is set to true indicating the request should be logged.

    Here is an example of RBAC configuration. It has two policies:

    • Service account “cluster.local/ns/default/sa/admin” has full access to the service, and so does “cluster.local/ns/default/sa/superuser”.

    • Any user can read (“GET”) the service at paths with prefix “/products”, so long as the destination port is either 80 or 443.

    1. "action": "...",
    2. "policies": "{...}"
    3. }

    action

    () The action to take if a policy matches. Every action either allows or denies a request, and can also carry out action-specific operations.

    Actions:

    policies

    (repeated map<string, >) Maps from policy name to policy. A match occurs when at least one policy matches the request. The policies are evaluated in lexicographic order of the policy name.

    Enum config.rbac.v3.RBAC.Action

    Should we do safe-list or block-list style access control?

    ALLOW

    (DEFAULT) ⁣The policies grant access to principals. The rest are denied. This is safe-list style access control. This is the default type.

    DENY

    ⁣The policies deny access to principals. The rest are allowed. This is block-list style access control.

    LOG

    ⁣The policies set the access_log_hint dynamic metadata key based on if requests match. All requests are allowed.

    [config.rbac.v3.Policy proto]

    Policy specifies a role and the principals that are assigned/denied the role. A policy matches if and only if at least one of its permissions match the action taking place AND at least one of its principals match the downstream AND the condition is true if specified.

    permissions

    (repeated , REQUIRED) Required. The set of permissions that define a role. Each permission is matched with OR semantics. To match all actions for this policy, a single Permission with the any field set to true should be used.

    principals

    (repeated config.rbac.v3.Principal, REQUIRED) Required. The set of principals that are assigned/denied the role based on “action”. Each principal is matched with OR semantics. To match all downstreams for this policy, a single Principal with the any field set to true should be used.

    condition

    (.google.api.expr.v1alpha1.Expr) An optional symbolic expression specifying an access control . The condition is combined with the permissions and the principals as a clause with AND semantics. Only be used when checked_condition is not used.

    config.rbac.v3.Permission

    Permission defines an action (or actions) that a principal can take.

    1. {
    2. "and_rules": "{...}",
    3. "or_rules": "{...}",
    4. "any": "...",
    5. "header": "{...}",
    6. "url_path": "{...}",
    7. "destination_ip": "{...}",
    8. "destination_port_range": "{...}",
    9. "metadata": "{...}",
    10. "not_rule": "{...}",
    11. "requested_server_name": "{...}",
    12. "matcher": "{...}"
    13. }

    and_rules

    (config.rbac.v3.Permission.Set) A set of rules that all must match in order to define the action.

    Precisely one of , or_rules, , header, , destination_ip, , destination_port_range, , not_rule, , matcher must be set.

    or_rules

    () A set of rules where at least one must match in order to define the action.

    Precisely one of and_rules, , any, , url_path, , destination_port, , metadata, , requested_server_name, must be set.

    (bool) When any is set, it matches any action.

    Precisely one of , or_rules, , header, , destination_ip, , destination_port_range, , not_rule, , matcher must be set.

    header

    () A header (or pseudo-header such as :path or :method) on the incoming HTTP request. Only available for HTTP request. Note: the pseudo-header :path includes the query and fragment string. Use the url_path field if you want to match the URL path without the query and fragment string.

    Precisely one of and_rules, , any, , url_path, , destination_port, , metadata, , requested_server_name, must be set.

    url_path

    (type.matcher.v3.PathMatcher) A URL path on the incoming HTTP request. Only available for HTTP.

    Precisely one of , or_rules, , header, , destination_ip, , destination_port_range, , not_rule, , matcher must be set.

    destination_ip

    () A CIDR block that describes the destination IP.

    Precisely one of and_rules, , any, , url_path, , destination_port, , metadata, , requested_server_name, must be set.

    destination_port

    (uint32) A port number that describes the destination port connecting to.

    Precisely one of , or_rules, , header, , destination_ip, , destination_port_range, , not_rule, , matcher must be set.

    destination_port_range

    () A port number range that describes a range of destination ports connecting to.

    Precisely one of and_rules, , any, , url_path, , destination_port, , metadata, , requested_server_name, must be set.

    metadata

    (type.matcher.v3.MetadataMatcher) Metadata that describes additional information about the action.

    Precisely one of , or_rules, , header, , destination_ip, , destination_port_range, , not_rule, , matcher must be set.

    not_rule

    () Negates matching the provided permission. For instance, if the value of not_rule would match, this permission would not match. Conversely, if the value of not_rule would not match, this permission would match.

    Precisely one of and_rules, , any, , url_path, , destination_port, , metadata, , requested_server_name, must be set.

    requested_server_name

    (type.matcher.v3.StringMatcher) The request server from the client’s connection request. This is typically TLS SNI.

    Attention

    The behavior of this field may be affected by how Envoy is configured as explained below.

    • If the filter is not added, and if a FilterChainMatch is not defined for the server name, a TLS connection’s requested SNI server name will be treated as if it wasn’t present.

    • A may overwrite a connection’s requested server name within Envoy.

    Please refer to this FAQ entry to learn to setup SNI.

    Precisely one of , or_rules, , header, , destination_ip, , destination_port_range, , not_rule, , matcher must be set.

    matcher

    () Extension for configuring custom matchers for RBAC.

    Tip

    This extension category has the following known extensions:

    Precisely one of and_rules, , any, , url_path, , destination_port, , metadata, , requested_server_name, must be set.

    [config.rbac.v3.Permission.Set proto]

    Used in the and_rules and or_rules fields in the rule oneof. Depending on the context, each are applied with the associated behavior.

    rules

    (repeated , REQUIRED)

    config.rbac.v3.Principal

    1. {
    2. "and_ids": "{...}",
    3. "or_ids": "{...}",
    4. "any": "...",
    5. "source_ip": "{...}",
    6. "direct_remote_ip": "{...}",
    7. "remote_ip": "{...}",
    8. "header": "{...}",
    9. "url_path": "{...}",
    10. "metadata": "{...}",
    11. "not_id": "{...}"
    12. }

    and_ids

    (config.rbac.v3.Principal.Set) A set of identifiers that all must match in order to define the downstream.

    Precisely one of , or_ids, , authenticated, , direct_remote_ip, , header, , metadata, must be set.

    or_ids

    (config.rbac.v3.Principal.Set) A set of identifiers at least one must match in order to define the downstream.

    Precisely one of , or_ids, , authenticated, , direct_remote_ip, , header, , metadata, must be set.

    any

    (bool) When any is set, it matches any downstream.

    Precisely one of , or_ids, , authenticated, , direct_remote_ip, , header, , metadata, must be set.

    authenticated

    (config.rbac.v3.Principal.Authenticated) Authenticated attributes that identify the downstream.

    Precisely one of , or_ids, , authenticated, , direct_remote_ip, , header, , metadata, must be set.

    source_ip

    (config.core.v3.CidrRange) A CIDR block that describes the downstream IP. This address will honor proxy protocol, but will not honor XFF.

    Precisely one of , or_ids, , authenticated, , direct_remote_ip, , header, , metadata, must be set.

    direct_remote_ip

    (config.core.v3.CidrRange) A CIDR block that describes the downstream remote/origin address. Note: This is always the physical peer even if the is inferred from for example the x-forwarder-for header, proxy protocol, etc.

    Precisely one of and_ids, , any, , source_ip, , remote_ip, , url_path, , not_id must be set.

    remote_ip

    () A CIDR block that describes the downstream remote/origin address. Note: This may not be the physical peer and could be different from the direct_remote_ip. E.g, if the remote ip is inferred from for example the x-forwarder-for header, proxy protocol, etc.

    Precisely one of , or_ids, , authenticated, , direct_remote_ip, , header, , metadata, must be set.

    header

    (config.route.v3.HeaderMatcher) A header (or pseudo-header such as :path or :method) on the incoming HTTP request. Only available for HTTP request. Note: the pseudo-header :path includes the query and fragment string. Use the url_path field if you want to match the URL path without the query and fragment string.

    Precisely one of , or_ids, , authenticated, , direct_remote_ip, , header, , metadata, must be set.

    url_path

    (type.matcher.v3.PathMatcher) A URL path on the incoming HTTP request. Only available for HTTP.

    Precisely one of , or_ids, , authenticated, , direct_remote_ip, , header, , metadata, must be set.

    metadata

    (type.matcher.v3.MetadataMatcher) Metadata that describes additional information about the principal.

    Precisely one of , or_ids, , authenticated, , direct_remote_ip, , header, , metadata, must be set.

    not_id

    (config.rbac.v3.Principal) Negates matching the provided principal. For instance, if the value of not_id would match, this principal would not match. Conversely, if the value of not_id would not match, this principal would match.

    Precisely one of , or_ids, , authenticated, , direct_remote_ip, , header, , metadata, must be set.

    [config.rbac.v3.Principal.Set proto]

    Used in the and_ids and or_ids fields in the identifier oneof. Depending on the context, each are applied with the associated behavior.

    ids

    (repeated , REQUIRED)

    config.rbac.v3.Principal.Authenticated

    Authentication attributes for a downstream.

    1. {
    2. "principal_name": "{...}"

    principal_name

    (type.matcher.v3.StringMatcher) The name of the principal. If set, The URI SAN or DNS SAN in that order is used from the certificate, otherwise the subject field is used. If unset, it applies to any user that is authenticated.