<?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: How do I create Splunk users with Chef? in Security</title>
    <link>https://community.splunk.com/t5/Security/How-do-I-create-Splunk-users-with-Chef/m-p/110440#M3518</link>
    <description>&lt;P&gt;How depends very much on how you control authentication and authorisation.&lt;/P&gt;

&lt;P&gt;If you use some form of network-based authentication/authorisation (LDAP against a slapd server or Microsoft AD, for instance), then you need to target your updates to those services.&lt;/P&gt;

&lt;P&gt;How do you go about adding users/roles presently?&lt;/P&gt;</description>
    <pubDate>Tue, 22 Oct 2013 19:56:09 GMT</pubDate>
    <dc:creator>grijhwani</dc:creator>
    <dc:date>2013-10-22T19:56:09Z</dc:date>
    <item>
      <title>How do I create Splunk users with Chef?</title>
      <link>https://community.splunk.com/t5/Security/How-do-I-create-Splunk-users-with-Chef/m-p/110439#M3517</link>
      <description>&lt;P&gt;How do I provision Splunk user accounts with Chef?  Is this even possible?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2013 19:24:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/How-do-I-create-Splunk-users-with-Chef/m-p/110439#M3517</guid>
      <dc:creator>aaronclementsny</dc:creator>
      <dc:date>2013-10-22T19:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create Splunk users with Chef?</title>
      <link>https://community.splunk.com/t5/Security/How-do-I-create-Splunk-users-with-Chef/m-p/110440#M3518</link>
      <description>&lt;P&gt;How depends very much on how you control authentication and authorisation.&lt;/P&gt;

&lt;P&gt;If you use some form of network-based authentication/authorisation (LDAP against a slapd server or Microsoft AD, for instance), then you need to target your updates to those services.&lt;/P&gt;

&lt;P&gt;How do you go about adding users/roles presently?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2013 19:56:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/How-do-I-create-Splunk-users-with-Chef/m-p/110440#M3518</guid>
      <dc:creator>grijhwani</dc:creator>
      <dc:date>2013-10-22T19:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create Splunk users with Chef?</title>
      <link>https://community.splunk.com/t5/Security/How-do-I-create-Splunk-users-with-Chef/m-p/110441#M3519</link>
      <description>&lt;P&gt;Not a direct answer to your question , but it made me think of these Splunk Chef Recipes on Github that may come in handy for you : &lt;A href="https://github.com/bestbuycom/splunk_cookbook"&gt;https://github.com/bestbuycom/splunk_cookbook&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2013 05:09:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/How-do-I-create-Splunk-users-with-Chef/m-p/110441#M3519</guid>
      <dc:creator>Damien_Dallimor</dc:creator>
      <dc:date>2013-10-23T05:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create Splunk users with Chef?</title>
      <link>https://community.splunk.com/t5/Security/How-do-I-create-Splunk-users-with-Chef/m-p/110442#M3520</link>
      <description>&lt;P&gt;They are currently added manually.  We'd like to avoid the LDAP option as we control access to our servers with chef.  It would be great if we could control user-creation with Chef.  However if Splunk isn't built for it, I'll back off before wasting too much time.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2013 19:33:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/How-do-I-create-Splunk-users-with-Chef/m-p/110442#M3520</guid>
      <dc:creator>aaronclementsny</dc:creator>
      <dc:date>2013-10-29T19:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create Splunk users with Chef?</title>
      <link>https://community.splunk.com/t5/Security/How-do-I-create-Splunk-users-with-Chef/m-p/110443#M3521</link>
      <description>&lt;P&gt;If chef can execute scripts on your behalf, there's always &lt;CODE&gt;splunk add user&lt;/CODE&gt; from the CLI. When I worked on a Splunk OEM before, that's what we did.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2013 19:46:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/How-do-I-create-Splunk-users-with-Chef/m-p/110443#M3521</guid>
      <dc:creator>sowings</dc:creator>
      <dc:date>2013-10-29T19:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create Splunk users with Chef?</title>
      <link>https://community.splunk.com/t5/Security/How-do-I-create-Splunk-users-with-Chef/m-p/110444#M3522</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;group node['splunk']['user']['username'] do
  gid node['splunk']['user']['uid'].to_i 
  system true if %w(linux).include?(node['os'])
end

user node['splunk']['user']['username'] do
  comment node['splunk']['user']['comment']
  shell node['splunk']['user']['shell']
  gid node['splunk']['user']['username']
  uid node['splunk']['user']['uid']
  home node['splunk']['user']['home']
  system true if %w(linux).include?(node['os'])
end
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 09 Mar 2018 09:13:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/How-do-I-create-Splunk-users-with-Chef/m-p/110444#M3522</guid>
      <dc:creator>kamal2222ahmed</dc:creator>
      <dc:date>2018-03-09T09:13:56Z</dc:date>
    </item>
  </channel>
</rss>

