Configuring external PDP mode
You can use the administrative console or dsconfig
to configure external PDP mode. To prepare the Policy Editor for making authorization decisions, you must create a Policy External Server to represent the Policy Editor, assign the Policy External Server to the Policy Decision Service, and set the PDP mode to external.
Before you begin
You need the following values to configure the PingAuthorize Server to use external PDP mode:
-
The shared secret, which is specified or generated when you install the Policy Editor.
To obtain the shared secret after installation, copy the
core.Authentication.SharedSecret
value from thePingAuthorize-PAP/config/configuration.yml
file. -
The branch name, which corresponds to the policy branch you want to evaluate requests against in the Policy Editor.
-
The decision node, which is the ID of a node in the policy tree that will be considered first during policy processing. To find the decision node value:
-
In the Policy Editor, go to Policies.
-
Select the node that you want to use as the root node.
This is typically the top-level node of your policy tree.
-
Click the hamburger menu and select Copy ID to clipboard.
-
-
Admin console
-
dsconfig
Configuring external PDP mode using the administrative console
Steps
-
In the PingAuthorize administrative console, go to Configuration > Data Sources > External Servers.
-
Click New External Server and, in the list, select Policy External Server.
-
In the New Policy External Server window, specify the following information:
-
Name
-
Base URL
-
Shared Secret
-
Decision Node
-
Branch
-
-
Click Save.
-
Go to Authorization and Policies > Policy Decision Service.
-
In the PDP Mode list, select external.
-
In the Policy Server list, select the name you gave to the policy external server in step 3.
-
Click Save To PingAuthorize Server Cluster.
Configuring external PDP mode using dsconfig
Steps
-
Use the
dsconfig
commands in the following code block to configure external PDP mode:dsconfig create-external-server \ --server-name "{PAP_Name}" \ --type policy \ --set "base-url:https://<pap-hostname>:<pap-port>" \ --set "shared-secret:pingauthorize" \ --set "branch:Default Policies" \ --set "decision-node:<your decision node ID value>" dsconfig set-policy-decision-service-prop \ --set pdp-mode:external \ --set "policy-server:{PAP_Name}"