Skip to content

Commit

Permalink
Update README.md according to changes in PR and PR merged (#4)
Browse files Browse the repository at this point in the history
* Removing 'Initial User Identity 1' from example in README.md

* updated the example of AzureGraphUserGroupProvider according to closed merge
  • Loading branch information
sjyang18 authored May 26, 2021
1 parent a6a6398 commit 9e1a89e
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -70,19 +70,18 @@ Example `authorizers.xml`:
<class>org.apache.nifi.authorization.FileUserGroupProvider</class>
<property name="Users File">./conf/users.xml</property>
<property name="Legacy Authorized Users File"></property>
<property name="Initial User Identity 1">SYS_ADMIN_AAD_UPN</property>
</userGroupProvider>

<userGroupProvider>
<identifier>aad-user-group-provider</identifier>
<class>org.apache.nifi.authorization.azure.AzureGraphUserGroupProvider</class>
<property name="REFRESH_DELAY">5 mins</property>
<property name="AUTHORITY_ENDPOINT">https://login.microsoftonline.com</property>
<property name="TENANT_ID">YOUR_TENANT_ID</property>
<property name="APP_REG_CLIENT_ID">YOUR_APPLICATION_CLIENT_ID</property>
<property name="APP_REG_CLIENT_SECRET">YOUR_APPLICATION_CLIENT_SECRET</property>
<property name="GROUP_FILTER_PREFIX">Nifi-AAD</property>
<property name="PAGE_SIZE">100</property>
<property name="Refresh Delay">5 mins</property>
<property name="Authority Endpoint">https://login.microsoftonline.com</property>
<property name="Directory ID">YOUR_TENANT_ID</property>
<property name="Application ID">YOUR_APPLICATION_CLIENT_ID</property>
<property name="Client Secret">YOUR_APPLICATION_CLIENT_SECRET</property>
<property name="Group Filter Prefix">Nifi-AAD</property>
<property name="Page Size">100</property>
</userGroupProvider>

<userGroupProvider>
Expand Down

0 comments on commit 9e1a89e

Please sign in to comment.