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. I basically created an Ansible script with a single task of creating the URL Categories, then used the following for my Terraform script: resource "null_resource" "whitelisted_sites" { provisioner "local-exec" { command = "ansible-playbook -T 300 url_categories.yml --extra-vars='{ \" ip_address \" : \"IP_ADDRESS \" , \" username \" : \"USERNAME \" , \" password \" : \"PASSWORD \" }'" } }
... View more