<?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>topic Re: Limited Dashboard Access in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Limited-Dashboard-Access/m-p/678366#M55553</link>
    <description>&lt;P&gt;Am trying to provide limited access to a dashboard and am trying to do that through the backend&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 22 Feb 2024 17:50:59 GMT</pubDate>
    <dc:creator>whitecat001</dc:creator>
    <dc:date>2024-02-22T17:50:59Z</dc:date>
    <item>
      <title>Limited Dashboard Access</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Limited-Dashboard-Access/m-p/678359#M55551</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;How do i provide access to a limited email address on a dashboard through the backend&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 16:52:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Limited-Dashboard-Access/m-p/678359#M55551</guid>
      <dc:creator>whitecat001</dc:creator>
      <dc:date>2024-02-22T16:52:47Z</dc:date>
    </item>
    <item>
      <title>Re: Limited Dashboard Access</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Limited-Dashboard-Access/m-p/678363#M55552</link>
      <description>&lt;P&gt;What problem are you trying to solve?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 17:33:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Limited-Dashboard-Access/m-p/678363#M55552</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2024-02-22T17:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: Limited Dashboard Access</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Limited-Dashboard-Access/m-p/678366#M55553</link>
      <description>&lt;P&gt;Am trying to provide limited access to a dashboard and am trying to do that through the backend&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 17:50:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Limited-Dashboard-Access/m-p/678366#M55553</guid>
      <dc:creator>whitecat001</dc:creator>
      <dc:date>2024-02-22T17:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: Limited Dashboard Access</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Limited-Dashboard-Access/m-p/678370#M55554</link>
      <description>&lt;P&gt;Splunk does not limit access by email address - it uses role-based access controls (RBAC).&amp;nbsp; You would need to create a role and make that role the only one that can access the dashboard in question.&amp;nbsp; Then create a Splunk account with the subject email address and assign that account to the new role.&lt;/P&gt;&lt;P&gt;Another option is to make the dashboard private to the user with the subject email address.&lt;/P&gt;&lt;P&gt;All of that is easiest to do using the GUI.&amp;nbsp; How to do it "through the backend" depends on your environment (Splunk Cloud, standalone, SHC, etc.).&amp;nbsp; It also depends on what you mean by "backend" - REST API, config files, or CLI commands.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 18:49:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Limited-Dashboard-Access/m-p/678370#M55554</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2024-02-22T18:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: Limited Dashboard Access</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Limited-Dashboard-Access/m-p/678379#M55555</link>
      <description>&lt;P&gt;What i mean by backend is through the CLI&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 20:21:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Limited-Dashboard-Access/m-p/678379#M55555</guid>
      <dc:creator>whitecat001</dc:creator>
      <dc:date>2024-02-22T20:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: Limited Dashboard Access</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Limited-Dashboard-Access/m-p/678573#M55573</link>
      <description>&lt;P&gt;I'm not sure everything needed can be done from the CLI, but let's try.&lt;/P&gt;&lt;P&gt;Let's take the easier option of making the dashboard private to the user with the subject email address.&amp;nbsp; I assume this is not a search head cluster.&lt;/P&gt;&lt;P&gt;1) Create the user.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;splunk add user foo@bar.com -password changeme -role User&lt;/LI-CODE&gt;&lt;P&gt;2) Locate the dashboard&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;find /opt/splunk/etc/apps -name &amp;lt;&amp;lt;dashboard&amp;gt;&amp;gt;.xml&lt;/LI-CODE&gt;&lt;P&gt;This will return something like&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;/opt/splunk/etc/apps/&amp;lt;&amp;lt;app name&amp;gt;&amp;gt;/local/data/ui/views/mydashboard.xml&lt;/LI-CODE&gt;&lt;P&gt;3) Create the user's private app directory.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;mkdir -p /opt/splunk/etc/users/&amp;lt;&amp;lt;app name&amp;gt;&amp;gt;/local/data/ui/views&lt;/LI-CODE&gt;&lt;P&gt;4) Move the dashboard to the private directory.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;mv /opt/splunk/etc/apps/&amp;lt;&amp;lt;app name&amp;gt;&amp;gt;/local/data/ui/views/mydashboard.xml /opt/splunk/etc/user/&amp;lt;&amp;lt;app name&amp;gt;&amp;gt;/local/data/ui/views/mydashboard.xml &lt;/LI-CODE&gt;&lt;P&gt;5) You may need to restart Splunk.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;sudo systemctl splunk restart&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Feb 2024 21:07:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Limited-Dashboard-Access/m-p/678573#M55573</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2024-02-24T21:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Limited Dashboard Access</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Limited-Dashboard-Access/m-p/678619#M55584</link>
      <description>&lt;P&gt;Thank you for your response. I will check it out&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Feb 2024 21:30:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Limited-Dashboard-Access/m-p/678619#M55584</guid>
      <dc:creator>whitecat001</dc:creator>
      <dc:date>2024-02-25T21:30:36Z</dc:date>
    </item>
  </channel>
</rss>

