Explicit Deny
This task shows you how to set up Istio authorization policy of DENY
action to explicitly deny traffic in an Istio
mesh. This is different from the ALLOW
action because the DENY
action has higher priority and will not be
bypassed by any ALLOW
actions.
Before you begin
Before you begin this task, do the following:
Read the Istio authorization concepts.
Follow the Istio installation guide6 to install Istio.
Deploy workloads:
This task uses two workloads,
httpbin
andcurl
, deployed on one namespace,foo
. Both workloads run with an Envoy proxy in front of each. Deploy the example namespace and workloads with the following command:Verify that
curl
talks tohttpbin
with the following command:
Explicitly deny a request
The following command creates the
deny-method-get
authorization policy for thehttpbin
workload in thefoo
namespace. The policy sets theaction
toDENY
to deny requests that satisfy the conditions set in therules
section. This type of policy is better known as a deny policy. In this case, the policy denies requests if their method isGET
.Verify that
GET
requests are denied:Verify that
POST
requests are allowed:Update the
deny-method-get
authorization policy to denyGET
requests only if thex-token
value of the HTTP header is notadmin
. The following example policy sets the value of thenotValues
field to["admin"]
to deny requests with a header value that is notadmin
:Verify that
GET
requests with the HTTP headerx-token: admin
are allowed:Verify that GET requests with the HTTP header
x-token: guest
are denied:The following command creates the
allow-path-ip
authorization policy to allow requests at the/ip
path to thehttpbin
workload. This authorization policy sets theaction
field toALLOW
. This type of policy is better known as an allow policy.Verify that
GET
requests with the HTTP headerx-token: guest
at path/ip
are denied by thedeny-method-get
policy. Deny policies takes precedence over the allow policies:Verify that
GET
requests with the HTTP headerx-token: admin
at path/ip
are allowed by theallow-path-ip
policy:Verify that
GET
requests with the HTTP headerx-token: admin
at path/get
are denied because they don’t match theallow-path-ip
policy:
Clean up
Remove the namespace foo
from your configuration: