Skip to content

Latest commit

 

History

History
80 lines (55 loc) · 2.35 KB

README.md

File metadata and controls

80 lines (55 loc) · 2.35 KB

Terraform Provider for Palo Alto Networks PANOS

Note

This provider is auto-generated via pan-os-codegen

Caution

This software is currently in alpha development stage. It is strongly recommended not to use this package in production environments. If you choose to use it for experimental or developmental purposes, please do so with caution.

Tip

Getting Started

Guide on Wiki

Requirements

  • Terraform 1.8.x or higher
  • Go 1.22 (to build the provider plugin)

Building The Provider

  1. Install Go

  2. Clone the SDK repo:

git clone https://github.com/paloaltonetworks/pango
  1. Clone this repo:
git clone https://github.com/paloaltonetworks/terraform-provider-panos
  1. Build the provider:
cd terraform-provider-panos
go build .
  1. Specify the dev_overrides configuration per the next section below. This tells Terraform where to find the provider you just built. The directory to specify is the full path to the cloned provider repo.

Developing the Provider

With Terraform v1 and later, development overrides for provider developers can be leveraged in order to use the provider built from source.

To do this, populate a Terraform CLI configuration file (~/.terraformrc for all platforms other than Windows; terraform.rc in the %APPDATA% directory when using Windows) with at least the following options:

provider_installation {
  dev_overrides {
    "registry.terraform.io/paloaltonetworks-local/panos" = "/directory/containing/the/provider/binary/here"
  }

  direct {}
}

Then when referencing the locally built provider, use the local name in the terraform configuration block like so:

terraform {
    required_providers {
        panos = {
            source = "paloaltonetworks-local/panos"
            version = "2.0.0"
        }
    }
}