<?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: Creating Custom URL categories with Terraform or Ansible in Automation/API Discussions</title>
    <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/452046#M2850</link>
    <description>&lt;P&gt;Hi &lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/201148"&gt;@SohelMomin&lt;/a&gt;, you could track &lt;A href="https://github.com/PaloAltoNetworks/terraform-provider-panos/issues/157" target="_self"&gt;this issue&lt;/A&gt;, &lt;A href="https://github.com/PaloAltoNetworks/terraform-provider-panos/issues/227" target="_self"&gt;this issue&lt;/A&gt;, or "watch" the repo itself for a new &lt;A href="https://github.com/PaloAltoNetworks/terraform-provider-panos/releases" target="_self"&gt;release&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Hope that helps?&lt;/P&gt;</description>
    <pubDate>Wed, 08 Dec 2021 09:07:09 GMT</pubDate>
    <dc:creator>JimmyHolland</dc:creator>
    <dc:date>2021-12-08T09:07:09Z</dc:date>
    <item>
      <title>Creating Custom URL categories with Terraform or Ansible</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/415594#M2704</link>
      <description>&lt;P&gt;I may be missing something, but I'm not seeing a way to create a custom URL category via Terraform or Ansible. We are trying to automate our Palo setups as much as possible, and from what I can tell, this is the only thing we are unable to do with it. We can create the URL filtering profiles, just not the URL categories. Anyone ran into this or know of a way to do it? I know you can create them via the API, but that's kind of a messy workaround. Just wanted to check before implementing it.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2021 13:11:45 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/415594#M2704</guid>
      <dc:creator>Brandon99</dc:creator>
      <dc:date>2021-06-28T13:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Custom URL categories with Terraform or Ansible</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/415643#M2705</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/185981"&gt;@Brandon99&lt;/a&gt;, here is the Ansible module reference for Custom URL Categories:&amp;nbsp;&lt;A href="https://paloaltonetworks.github.io/pan-os-ansible/modules/panos_custom_url_category.html" target="_self"&gt;https://paloaltonetworks.github.io/pan-os-ansible/modules/panos_custom_url_category.html&lt;/A&gt;. Does that help?&lt;BR /&gt;&lt;BR /&gt;For the PAN-OS Terraform provider, Custom URL Categories are not yet implemented, but if you could share your use case with your account team, or via your reseller, that would be really useful, and have them forward over to us. Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2021 16:19:47 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/415643#M2705</guid>
      <dc:creator>JimmyHolland</dc:creator>
      <dc:date>2021-06-28T16:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Custom URL categories with Terraform or Ansible</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/415747#M2706</link>
      <description>&lt;P&gt;Hey Jimmy, thanks for that. I guess I forgot to include some things. My issue was the I was unable to create the category via Terraform, but was unable to create some of the other things via Ansible, that I can create with Terraform. There was no one solution to set everything up, but I did figure out what I could do. There was only 1 thing I couldn't create via Terraform and 3 I couldn't create via Ansible, so I decided to go with Terraform. I was able to get the URL category working by creating a "null_resource" in Terraform with a provisioner to call an Ansible script.&lt;BR /&gt;&lt;BR /&gt;I basically created an Ansible script with a single task of creating the URL Categories, then used the following for my Terraform script:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;resource &lt;/SPAN&gt;&lt;SPAN&gt;"null_resource" &lt;/SPAN&gt;&lt;SPAN&gt;"whitelisted_sites" &lt;/SPAN&gt;&lt;SPAN&gt;{&lt;BR /&gt;&lt;/SPAN&gt;  &lt;SPAN&gt;provisioner &lt;/SPAN&gt;&lt;SPAN&gt;"local-exec" &lt;/SPAN&gt;&lt;SPAN&gt;{&lt;BR /&gt;&lt;/SPAN&gt;    command &lt;SPAN&gt;= &lt;/SPAN&gt;&lt;SPAN&gt;"ansible-playbook -T 300 url_categories.yml --extra-vars='{&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;ip_address&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;\"IP_ADDRESS&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;username&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;\"USERNAME&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;password&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;\"PASSWORD&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;}'"&lt;BR /&gt;&lt;/SPAN&gt;  &lt;SPAN&gt;}&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Jun 2021 21:33:24 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/415747#M2706</guid>
      <dc:creator>Brandon99</dc:creator>
      <dc:date>2021-06-28T21:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Custom URL categories with Terraform or Ansible</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/415824#M2707</link>
      <description>&lt;P&gt;Yes, that's a way to supplement Terraform provider functionality, use a null_resource to execute another script, Ansible being one example. If you can let us know via your usual account team or reseller the use case for Custom URL Categories and have them send it to me, it helps prioritise future Terraform provider features. Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jun 2021 09:00:17 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/415824#M2707</guid>
      <dc:creator>JimmyHolland</dc:creator>
      <dc:date>2021-06-29T09:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Custom URL categories with Terraform or Ansible</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/415864#M2708</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/4294"&gt;@JimmyHolland&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;I'm not even sure who to go to with that to be honest. We're a small team here and as far as I know, we don't really have a reseller.&amp;nbsp;&lt;BR /&gt;We are just using the Palo Alto AMI from the marketplace. We do have a license for our physical Palo Altos in our offices, but I'm honestly not sure who we go through for that.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jun 2021 11:53:47 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/415864#M2708</guid>
      <dc:creator>Brandon99</dc:creator>
      <dc:date>2021-06-29T11:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Custom URL categories with Terraform or Ansible</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/415867#M2709</link>
      <description>&lt;P&gt;No problem, I'll send you a message directly.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jun 2021 11:57:07 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/415867#M2709</guid>
      <dc:creator>JimmyHolland</dc:creator>
      <dc:date>2021-06-29T11:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Custom URL categories with Terraform or Ansible</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/437548#M2794</link>
      <description>&lt;P&gt;I'm looking for the same functionality. I'll reach out to our TAM and let them know. Should I reference this forum or is there a specific project/internal ticket I should reference?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Sep 2021 02:29:26 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/437548#M2794</guid>
      <dc:creator>rborunda_dexcom</dc:creator>
      <dc:date>2021-09-30T02:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Custom URL categories with Terraform or Ansible</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/437657#M2795</link>
      <description>&lt;P&gt;I've sent you a message directly&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/193080"&gt;@rborunda_dexcom&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Sep 2021 09:19:17 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/437657#M2795</guid>
      <dc:creator>JimmyHolland</dc:creator>
      <dc:date>2021-09-30T09:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Custom URL categories with Terraform or Ansible</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/442611#M2811</link>
      <description>&lt;P&gt;Custom URL categories will be in the next Terraform release (will be out before the end of the year).&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 15:58:19 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/442611#M2811</guid>
      <dc:creator>gfreeman</dc:creator>
      <dc:date>2021-10-21T15:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Custom URL categories with Terraform or Ansible</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/449438#M2836</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;Could you please tell me by when exactly will this be expected ?&lt;BR /&gt;From your above post you hint towards the end of 2021....It would be super awesome if its done by December, I'll escape the pain of incorporating our pure terraform automation with ansible &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Nov 2021 13:19:58 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/449438#M2836</guid>
      <dc:creator>SohelMomin</dc:creator>
      <dc:date>2021-11-25T13:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Custom URL categories with Terraform or Ansible</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/449498#M2837</link>
      <description>&lt;P&gt;Exactly I can't say.&amp;nbsp; But it will be out before Dec 31st for sure.&amp;nbsp; We're looking over the github issues and seeing if there's anything else that can be crammed in in time.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Nov 2021 20:53:00 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/449498#M2837</guid>
      <dc:creator>gfreeman</dc:creator>
      <dc:date>2021-11-25T20:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Custom URL categories with Terraform or Ansible</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/452035#M2849</link>
      <description>&lt;P&gt;Hello...sorry I missed your reply to my query&lt;BR /&gt;Is there a pull request on the repo currently&amp;nbsp;&lt;A href="https://github.com/PaloAltoNetworks/terraform-provider-panos" target="_blank"&gt;https://github.com/PaloAltoNetworks/terraform-provider-panos&lt;/A&gt;&amp;nbsp;that I can track for this custom url category feature? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;Currently I dont see any open PR &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 08:03:37 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/452035#M2849</guid>
      <dc:creator>SohelMomin</dc:creator>
      <dc:date>2021-12-08T08:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Custom URL categories with Terraform or Ansible</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/452046#M2850</link>
      <description>&lt;P&gt;Hi &lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/201148"&gt;@SohelMomin&lt;/a&gt;, you could track &lt;A href="https://github.com/PaloAltoNetworks/terraform-provider-panos/issues/157" target="_self"&gt;this issue&lt;/A&gt;, &lt;A href="https://github.com/PaloAltoNetworks/terraform-provider-panos/issues/227" target="_self"&gt;this issue&lt;/A&gt;, or "watch" the repo itself for a new &lt;A href="https://github.com/PaloAltoNetworks/terraform-provider-panos/releases" target="_self"&gt;release&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Hope that helps?&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 09:07:09 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/452046#M2850</guid>
      <dc:creator>JimmyHolland</dc:creator>
      <dc:date>2021-12-08T09:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Custom URL categories with Terraform or Ansible</title>
      <link>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/452955#M2857</link>
      <description>&lt;P&gt;Probably the last day of December, it's looking like.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Dec 2021 22:25:41 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/automation-api-discussions/creating-custom-url-categories-with-terraform-or-ansible/m-p/452955#M2857</guid>
      <dc:creator>gfreeman</dc:creator>
      <dc:date>2021-12-13T22:25:41Z</dc:date>
    </item>
  </channel>
</rss>

