<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: Is it possible to reference multiple tags in one Ranger tag policy via Policy Conditions? in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230582#M192432</link>
    <description>&lt;BLOCKQUOTE&gt; Is it possible to reference more than one Atlas tag in one Ranger policy via the Policy Conditions?&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yes. Following can be used to access details of all tags associated with the resource being accessed:&lt;/P&gt;&lt;PRE&gt;ctx.getAllTagTypes() &amp;lt;== returns names of all tags associated with the resource (Set&amp;lt;String&amp;gt;)
ctx.getTagAttributes(tagType) &amp;lt;== returns attributes of given tag (Map&amp;lt;String, String&amp;gt;)
ctx.getAttributeValue(tagType, attrName) &amp;lt;== returns value of attribute 'attrName' in tagType tag&lt;/PRE&gt;&lt;P&gt;The usecase you describe seems to require access-control based on tenancy and the zone in which the data resides. Please consider the following approach:&lt;/P&gt;&lt;P&gt;1. Define a classification named 'DATA_ZONE', with one attribute named "name" - as shown below:&lt;/P&gt;&lt;PRE&gt;"classificationDefs": [
    {
      "name": "DATA_ZONE",
      "attributeDefs": [
        {
          "name":     "name",
          "typeName": "string"
        }
      ]
    }
  ]&lt;/PRE&gt;&lt;P&gt;2. Define one classification for each tenant. In your example, you already have 2 classifications "tenancy_xxx" and "tenancy_yyy".&lt;/P&gt;&lt;P&gt;3. Create one tag-based policy for each tenant. Per your example, you would create 2 policies - one for "tenancy_xxx" tag and another for "tenancy_yyy" tag.&lt;/P&gt;&lt;P&gt;4. In policy for each tenant, you can use conditions as shown below to allow/deny access to users/groups:&lt;/P&gt;&lt;PRE&gt;ctx.getAttributeValue("DATA_ZONE", "name").equals("landing")&lt;/PRE&gt;&lt;PRE&gt;ctx.getAttributeValue("DATA_ZONE", "name").equals("staging")&lt;/PRE&gt;&lt;PRE&gt;ctx.getAttributeValue("DATA_ZONE", "name").equals("data_lake")&lt;/PRE&gt;</description>
    <pubDate>Wed, 28 Feb 2018 05:51:45 GMT</pubDate>
    <dc:creator>mneethiraj</dc:creator>
    <dc:date>2018-02-28T05:51:45Z</dc:date>
    <item>
      <title>Is it possible to reference multiple tags in one Ranger tag policy via Policy Conditions?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230581#M192431</link>
      <description>&lt;P&gt;Is it possible to reference more than one Atlas tag in one Ranger policy via the Policy Conditions?&lt;/P&gt;&lt;P&gt;I can set-up allow or deny tag policies, but would like to reference a combination of tags in the Policy Conditions on one policy. Is this possible?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Example&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Let's say I have these 3 tags: (tenancy_component with some attributes, tenancy_xxx and tenancy_yyy).&lt;/P&gt;&lt;PRE&gt;{
  "classificationDefs":[
    {
      "createdBy": "Laura",
      "name": "tenancy_component",
      "description": "tenancy_component",
      "attributeDefs": [
      {
	   "name":"landing",
	   "typeName":"boolean",
	   "isOptional":"true",
	   "isUnique":"false",
	   "isIndexable":"true",
	   "cardinality":"SINGLE"
      },
	  {
	   "name":"staging",
	   "typeName":"boolean",
	   "isOptional":"true",
	   "isUnique":"false",
	   "isIndexable":"true",
	   "cardinality":"SINGLE"
      },
	  {
	   "name":"data_lake",
	   "typeName":"boolean",
	   "isOptional":"true",
	   "isUnique":"false",
	   "isIndexable":"true",
	   "cardinality":"SINGLE"
      }],
     "superTypes": []
    }
  ]
}
&lt;/PRE&gt;&lt;PRE&gt;{
  "classificationDefs":[
    {
      "createdBy": "Laura",
      "name": "tenancy_xxx",
      "description": "tenancy_xxx",
      "attributeDefs": [
      {
      }],
     "superTypes": []
    },
	{
      "createdBy": "Laura",
      "name": "tenancy_yyy",
      "description": "tenancy_yyy",
      "attributeDefs": [
      {
      }],
     "superTypes": []
    }
  ]
}
&lt;/PRE&gt;&lt;P&gt;I want to provide access (ABAC) to a role such that it doesn't have access to landing unless it is in tenancy xxx, it has access to the data lake for tenancy xxx but not yyy. The role only have access to staging if it is part of tenancy_yyy.&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Database name&lt;/TD&gt;&lt;TD&gt;Tags&lt;/TD&gt;&lt;TD&gt;Access&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;db1&lt;/TD&gt;&lt;TD&gt;tenancy_xxx, tenancy_component.landing=true&lt;/TD&gt;&lt;TD&gt;Access&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;db2&lt;/TD&gt;&lt;TD&gt;tenancy_xxx, tenancy_component.staging=true&lt;/TD&gt;&lt;TD&gt;Deny&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;db3&lt;/TD&gt;&lt;TD&gt;tenancy_xxx, tenancy_component.data_lake=true&lt;/TD&gt;&lt;TD&gt;Access&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;db5&lt;/TD&gt;&lt;TD&gt;tenancy_yyy, tenancy_component.landing=true&lt;/TD&gt;&lt;TD&gt;Deny&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;db6&lt;/TD&gt;&lt;TD&gt;tenancy_yyy, tenancy_component.staging=true&lt;/TD&gt;&lt;TD&gt;Access&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;db7&lt;/TD&gt;&lt;TD&gt;tenancy_yyy, tenancy_component.data_lake=true&lt;/TD&gt;&lt;TD&gt;Deny&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;db7&lt;/TD&gt;&lt;TD&gt;tenancy_component.data_lake=true&lt;/TD&gt;&lt;TD&gt;Deny&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;How many tag policies should I have and how would I do it?&lt;/P&gt;</description>
      <pubDate>Sat, 24 Feb 2018 01:49:45 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230581#M192431</guid>
      <dc:creator>laura_ngo</dc:creator>
      <dc:date>2018-02-24T01:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to reference multiple tags in one Ranger tag policy via Policy Conditions?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230582#M192432</link>
      <description>&lt;BLOCKQUOTE&gt; Is it possible to reference more than one Atlas tag in one Ranger policy via the Policy Conditions?&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yes. Following can be used to access details of all tags associated with the resource being accessed:&lt;/P&gt;&lt;PRE&gt;ctx.getAllTagTypes() &amp;lt;== returns names of all tags associated with the resource (Set&amp;lt;String&amp;gt;)
ctx.getTagAttributes(tagType) &amp;lt;== returns attributes of given tag (Map&amp;lt;String, String&amp;gt;)
ctx.getAttributeValue(tagType, attrName) &amp;lt;== returns value of attribute 'attrName' in tagType tag&lt;/PRE&gt;&lt;P&gt;The usecase you describe seems to require access-control based on tenancy and the zone in which the data resides. Please consider the following approach:&lt;/P&gt;&lt;P&gt;1. Define a classification named 'DATA_ZONE', with one attribute named "name" - as shown below:&lt;/P&gt;&lt;PRE&gt;"classificationDefs": [
    {
      "name": "DATA_ZONE",
      "attributeDefs": [
        {
          "name":     "name",
          "typeName": "string"
        }
      ]
    }
  ]&lt;/PRE&gt;&lt;P&gt;2. Define one classification for each tenant. In your example, you already have 2 classifications "tenancy_xxx" and "tenancy_yyy".&lt;/P&gt;&lt;P&gt;3. Create one tag-based policy for each tenant. Per your example, you would create 2 policies - one for "tenancy_xxx" tag and another for "tenancy_yyy" tag.&lt;/P&gt;&lt;P&gt;4. In policy for each tenant, you can use conditions as shown below to allow/deny access to users/groups:&lt;/P&gt;&lt;PRE&gt;ctx.getAttributeValue("DATA_ZONE", "name").equals("landing")&lt;/PRE&gt;&lt;PRE&gt;ctx.getAttributeValue("DATA_ZONE", "name").equals("staging")&lt;/PRE&gt;&lt;PRE&gt;ctx.getAttributeValue("DATA_ZONE", "name").equals("data_lake")&lt;/PRE&gt;</description>
      <pubDate>Wed, 28 Feb 2018 05:51:45 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230582#M192432</guid>
      <dc:creator>mneethiraj</dc:creator>
      <dc:date>2018-02-28T05:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to reference multiple tags in one Ranger tag policy via Policy Conditions?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230583#M192433</link>
      <description>&lt;P&gt;Thanks, &lt;A rel="user" href="https://community.cloudera.com/users/330/mneethiraj.html" nodeid="330"&gt;@Madhan Neethiraj&lt;/A&gt; - that's very helpful indeed. And I like your suggestion about how to structure the Ranger policies - very logical.&lt;/P&gt;&lt;P&gt;I will try this out and will post back if I have any other queries about this.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2018 20:50:43 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230583#M192433</guid>
      <dc:creator>laura_ngo</dc:creator>
      <dc:date>2018-02-28T20:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to reference multiple tags in one Ranger tag policy via Policy Conditions?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230584#M192434</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/330/mneethiraj.html" nodeid="330"&gt;@Madhan Neethiraj&lt;/A&gt;&lt;P&gt;I'm having problems getting the tag policy to work. Here are the steps I've taken:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Disabled resource policies - holger_gov cannot select on default and foodmart database&lt;/LI&gt;&lt;LI&gt;Created a tag called tennant_xxx&lt;/LI&gt;&lt;LI&gt;Created a tag policy giving access to holger_gov if tag is tennant_xxx - so far so good as holger_gov now has select access&lt;/LI&gt;&lt;LI&gt;Created a tag called DATA_ZONE with attribute name (type string) and added to default and footmart database - one with a name = data_lake and one with name = staging&lt;/LI&gt;&lt;LI&gt;Added policy condition:&lt;/LI&gt;&lt;/UL&gt;&lt;PRE&gt;ctx.getAttributeValue("DATA_ZONE", "name").equals("data_lake")&lt;/PRE&gt;&lt;P&gt;But holger_gov can still select on both databases - I only want the data_lake one to be selectable.&lt;/P&gt;&lt;P&gt;I have tried various combinations to try to get it to work including the below, but to no avail. Any ideas?&lt;/P&gt;&lt;PRE&gt;if(ctx.getAttributeValue("DATA_ZONE", "name").equals("data_lake")) {
ctx.result = true;
} else {
ctx.result = false;
}
&lt;/PRE&gt;</description>
      <pubDate>Mon, 05 Mar 2018 04:49:33 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230584#M192434</guid>
      <dc:creator>laura_ngo</dc:creator>
      <dc:date>2018-03-05T04:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to reference multiple tags in one Ranger tag policy via Policy Conditions?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230585#M192435</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/3758/laurango.html" nodeid="3758"&gt;@Laura Ngo&lt;/A&gt; - can you verify that no other policy allowed select access on footmart database for holger_gov (please look at Ranger audit log)?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Mar 2018 07:11:58 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230585#M192435</guid>
      <dc:creator>mneethiraj</dc:creator>
      <dc:date>2018-03-05T07:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to reference multiple tags in one Ranger tag policy via Policy Conditions?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230586#M192436</link>
      <description>&lt;P&gt;&lt;A href="https://community.hortonworks.com/users/330/mneethiraj.html" rel="nofollow noopener noreferrer" target="_blank"&gt;@Madhan Neethiraj&lt;/A&gt; - The Ranger Audit looks to me as though only policy 35 is being used. I've attached some screen prints. I'm not sure if it's relevant, but the Ranger Audit policy when clicked doesn't show the ',', although in the actual policy the ',' is still present.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="64478-screen-shot-2018-03-05-at-003151.png" style="width: 2508px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/15004iC95A37253653855C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="64478-screen-shot-2018-03-05-at-003151.png" alt="64478-screen-shot-2018-03-05-at-003151.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="64479-screen-shot-2018-03-05-at-003222.png" style="width: 888px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/15005iD87A6B8B768B978F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="64479-screen-shot-2018-03-05-at-003222.png" alt="64479-screen-shot-2018-03-05-at-003222.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="64480-screen-shot-2018-03-05-at-003252.png" style="width: 2494px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/15006iEB1ABFEC1CE22F9D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="64480-screen-shot-2018-03-05-at-003252.png" alt="64480-screen-shot-2018-03-05-at-003252.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="64481-screen-shot-2018-03-05-at-003318.png" style="width: 1924px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/15007iD71A1114FC6BFBA8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="64481-screen-shot-2018-03-05-at-003318.png" alt="64481-screen-shot-2018-03-05-at-003318.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Aug 2019 00:45:36 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230586#M192436</guid>
      <dc:creator>laura_ngo</dc:creator>
      <dc:date>2019-08-18T00:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to reference multiple tags in one Ranger tag policy via Policy Conditions?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230587#M192437</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/3758/laurango.html" nodeid="3758"&gt;@Laura Ngo&lt;/A&gt; - I was able to reproduce the issue. The expression you entered is indeed correct:&lt;/P&gt;&lt;PRE&gt;ctx.getAttributeValue("DATA_ZONE","name").equals("data_lake")&lt;/PRE&gt;&lt;P&gt;However, when the policy is saved from UI, the entered expression is broken into multiple strings, causing the evaluation to fail at runtime. This is likely an issue with Ranger UI. I was able to get around this issue by updating the policies via REST API; if possible, please update the policies via REST API. I will update on the UI issue shortly. &lt;/P&gt;</description>
      <pubDate>Mon, 05 Mar 2018 09:32:20 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230587#M192437</guid>
      <dc:creator>mneethiraj</dc:creator>
      <dc:date>2018-03-05T09:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to reference multiple tags in one Ranger tag policy via Policy Conditions?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230588#M192438</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/330/mneethiraj.html" nodeid="330" target="_blank"&gt;@Madhan Neethiraj&lt;/A&gt; - I've changed the Ranger policy via PUT service/public/v2/api/policy/35 &lt;/P&gt;&lt;PRE&gt;"conditions": [
  {
"type": "expression",
"values": ["ctx.getAttributeValue('DATA_ZONE','name').equals('data_lake')"]
}
]
&amp;lt;br&amp;gt;&lt;/PRE&gt;&lt;P&gt;But I'm still not getting the desired behaviour - I would expect holger_gov to be denied access based on the below flow:&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://ip1.i.lithium.com/1f09af47280e20c35eb019b6e2c6fafa2fd885d2/68747470733a2f2f6970312e692e6c69746869756d2e636f6d2f643230666566396566313230643739643635633834633561626563663434366631333562663834642f3638373437343730373333613266326636333737363936623639326536313730363136333638363532653666373236373266363336663665363636633735363536653633363532663634366637373665366336663631363432663631373437343631363336383664363536653734373332663336333133333332333233333336333132663532363136653637363537323264353036663663363936333739326434353736363136633735363137343639366636653264343636633666373732643737363937343638326435343631363737333265373036653637336637363635373237333639366636653364333232363664366636343639363636393633363137343639366636653434363137343635336433313334333433343338333633393339333433393330333033303236363137303639336437363332" /&gt;Here's a screenshot of the Ranger Audit&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="64500-ranger-audit.png" style="width: 1231px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/15003i3CA5896AE6A746F6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="64500-ranger-audit.png" alt="64500-ranger-audit.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Could you perhaps paste the full output of your GET service/public/v2/api/policy/{i} policy so I can compare?
Here's mine:&lt;/P&gt;&lt;PRE&gt;
{"id": 35,
"guid": "1d7a6456-840d-4d1d-b5d5-7ec37d50eb8c",
"isEnabled": true,
"createdBy": "Admin",
"updatedBy": "Admin",
"createTime": 1520122079000,
"updateTime": 1520255099000,
"version": 22,
"service": "sandbox_tag",
"name": "tenancy_food",
"policyType": 0,
"description": "",
"resourceSignature": "5b2d59d4b57c1fa990c17143d54c89974270cf8e928f982e03c89055cbc69386",
"isAuditEnabled": true,
"resources": {"tag": {"values": [  "tenancy_food"
],


"isExcludes": false,
"isRecursive": false
}


},


"policyItems": [  {"accesses": [  {"type": "hive:select",
"isAllowed": true
},


  {"type": "hive:update",
"isAllowed": true
},


  {"type": "hive:create",
"isAllowed": true
},


  {"type": "hive:drop",
"isAllowed": true
},


  {"type": "hive:alter",
"isAllowed": true
},


  {"type": "hive:index",
"isAllowed": true
},


  {"type": "hive:lock",
"isAllowed": true
},


  {"type": "hive:all",
"isAllowed": true
},


  {"type": "hive:read",
"isAllowed": true
},


  {"type": "hive:write",
"isAllowed": true
},


  {"type": "hive:repladmin",
"isAllowed": true
},


  {"type": "hive:serviceadmin",
"isAllowed": true
}


],


"users": [  "holger_gov"
],


"groups": [],
"conditions": [  {"type": "expression",
"values": [  "ctx.getAttributeValue('DATA_ZONE','name').equals('data_lake')"
],


}


],


"delegateAdmin": false
}


],


"denyPolicyItems": [],
"allowExceptions": [],
"denyExceptions": [],
"dataMaskPolicyItems": [],
"rowFilterPolicyItems": [],
}
&amp;lt;br&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 18 Aug 2019 00:45:12 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230588#M192438</guid>
      <dc:creator>laura_ngo</dc:creator>
      <dc:date>2019-08-18T00:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to reference multiple tags in one Ranger tag policy via Policy Conditions?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230589#M192439</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/3758/laurango.html" nodeid="3758"&gt;@Laura Ngo&lt;/A&gt; - the policy contents look right. Audit log shows the tag name in lower case - "data_zone". Please ensure that the tag name used in the condition is same as the one in Atlas.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 01:55:26 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230589#M192439</guid>
      <dc:creator>mneethiraj</dc:creator>
      <dc:date>2018-03-06T01:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to reference multiple tags in one Ranger tag policy via Policy Conditions?</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230590#M192440</link>
      <description>&lt;P&gt;You are exactly right - thank you. Both the Atlas tag and the Ranger policy were in caps but I don't think Ranger Audit likes caps. I changed both to lower and the access is denied.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.cloudera.com/legacyfs/online/attachments/64503-access-denied.png"&gt;access-denied.png&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks so much for your help. (I've never been so happy to see an 'access denied' message!)&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 04:44:28 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Is-it-possible-to-reference-multiple-tags-in-one-Ranger-tag/m-p/230590#M192440</guid>
      <dc:creator>laura_ngo</dc:creator>
      <dc:date>2018-03-06T04:44:28Z</dc:date>
    </item>
  </channel>
</rss>

