Skip to main content

Information Gathering Tasks

With this Terraform code, you will gather information from a PAN-OS next-generation firewall. This is useful on its own in order to gather data, but the gathered data can also be used to feed into other Terraform operations.

Assumptions

This tutorial/guide assumes:

  • you have a working installation of Terraform (see example instructions here)
  • you have working connectivity to the firewall and/or Panorama
  • you have administrative credentials capable of performing the relevant operations on the firewall and/or Panorama

Important - Work in a Lab Environment First

With all of the tutorials and guides presented on this website, please ensure that you attempt the tasks in a lab or a similar safe and non-production environment first. In public cloud scenarios, this should be a non-production cloud account which contains no production assets or data. Confirm the tasks behave as expected and perform the operations you require, before using them in production or other live environments.

Getting Terraform Ready

This Terraform operation gathers a number of system information items from a PAN-OS next-generation firewall.

  1. Create a file called get-system-info.tf and paste in the following content:
terraform {
required_providers {
panos = {
source = "paloaltonetworks/panos"
version = "~> 1.11.0"
}
}
}

provider "panos" {
hostname = var.panos_hostname
username = var.panos_username
password = var.panos_password
}

variable "panos_hostname" {
type = string
default = "192.168.1.1"
}

variable "panos_username" {
type = string
default = "admin"
}

variable "panos_password" {
type = string
default = "admin"
}
  1. Edit the variable sections of the file, replacing the values for panos_hostname, panos_username and panos_password with relevant values for your environment. For example:
.
.

variable "panos_hostname" {
type = string
default = "172.16.14.5"
}

variable "panos_username" {
type = string
default = "firewall_admin"
}

variable "panos_password" {
type = string
default = "a_pa55word_l1ke_th1s"
}
.
.
caution

The PAN-OS credentials are being stored within the code and on disk unencrypted. This is not a production-level solution, and other solutions for managing secrets should be considered for real-world deployments. Hashicorp (owners of Terraform) and many others have solutions for this.

  1. Initialize Terraform with the following command, which will download the PAN-OS provider:
terraform init
  1. The output should look something like this:
Initializing the backend...

Initializing provider plugins...
- Finding paloaltonetworks/panos versions matching "~> 1.11.0"...
- Installing paloaltonetworks/panos v1.11.0...
- Installed paloaltonetworks/panos v1.11.0 (signed by a HashiCorp partner, key ID D5D93F98EFA33E83)

Partner and community providers are signed by their developers.
If you'd like to know more about provider signing, you can read about it here:
https://www.terraform.io/docs/plugins/signing.html

Terraform has created a lock file .terraform.lock.hcl to record the provider
selections it made above. Include this file in your version control repository
so that Terraform can guarantee to make the same selections by default when
you run "terraform init" in the future.

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.

Getting the "system info"

  1. Add the following code to the bottom of the existing get-system-info.tf file:
data "panos_system_info" "ngfw_info" { }

output "the_info" {
value = data.panos_system_info.ngfw_info
}
  1. Instruct Terraform to inspect the firewall and gather data by executing the following command:
terraform plan
  1. The output should look something like this (truncated for brevity):
+ the_info = {
+ id = "10.110.255.4"
+ info = {
"app-version" = "8468-6979"
"av-version" = "0"
"cloud-mode" = "cloud"
"default-gateway" = "10.110.255.1"
"device-certificate-status" = "None"
"device-dictionary-version" = "1-211"
"devicename" = "lab-fw"
"family" = "vm"
.
.
.
"wildfire-rt" = "Disabled"
"wildfire-version" = "0"
}
+ version_major = 10
+ version_minor = 1
+ version_patch = 8
}

Final code

Putting all the sections together, the code in entirety looks like this:

# Define required Terraform providers
terraform {
required_providers {
panos = {
source = "paloaltonetworks/panos"
version = "~> 1.11.0"
}
}
}

# Configure the PAN-OS provider for Terraform
provider "panos" {
hostname = var.panos_hostname
username = var.panos_username
password = var.panos_password
}

variable "panos_hostname" {
type = string
default = "192.168.1.1"
}

variable "panos_username" {
type = string
default = "admin"
}

variable "panos_password" {
type = string
default = "admin"
}

# Define the data we want to gather, the PAN-OS "system info"
data "panos_system_info" "ngfw_info" {}

# Output the data
output "the_info" {
value = data.panos_system_info.ngfw_info
}

Closing notes

  • Note that when working with Terraform at scale and in production, the code would likely be split into several .tf files for the provider section, the variable section, and the rest of the code. For the purposes of this learning tutorial, keeping the code in a single file works fine.
  • The PAN-OS credentials are being stored within the code and on disk unencrypted. This is not a production-level solution, and other solutions for managing secrets should be considered for real-world deployments. Hashicorp (owners of Terraform) and many others have solutions for this.
  • Almost all values were defined within the code; names of configuration items, IP addresses, and more. This is very suitable for a learning tutorial, but this approach does not scale well in production, and using variables instead is something to consider as you operationalize Terraform within your organization.