Skip to content

Commit

Permalink
Merge pull request #2263 from atlanhq/fix/gov-1259
Browse files Browse the repository at this point in the history
Fix/gov 1259 - Add deny data access policy for all the guest
  • Loading branch information
sumandas0 authored Aug 14, 2023
2 parents 7f19cf8 + 29ba6f0 commit e74ebfe
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
1 change: 0 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,3 @@ Build Process
distro/target/apache-atlas-<version>-falcon-hook.tar.gz

4. For more details on installing and running Apache Atlas, please refer to https://atlas.apache.org/#/Installation.

35 changes: 35 additions & 0 deletions addons/policies/bootstrap_heka_policies.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"entities":
[
{
"typeName": "AuthPolicy",
"attributes":
{
"name": "DENY_DATA_ACCESS_GUEST",
"qualifiedName": "DENY_DATA_ACCESS_GUEST",
"description": "deny data access for guest users",
"policyCategory": "bootstrap",
"policySubCategory": "data",
"policyServiceName": "heka",
"policyType": "deny",
"policyPriority": 0,
"policyUsers": [],
"policyGroups": [],
"policyRoles":
[
"$guest"
],
"policyResourceCategory": "ENTITY",
"policyResources":
[
"entity:*",
"entity-type:*"
],
"policyActions":
[
"select"
]
}
}
]
}

0 comments on commit e74ebfe

Please sign in to comment.