No description
  • Go 97.5%
  • HTML 1.9%
  • HCL 0.4%
  • Shell 0.1%
  • Makefile 0.1%
Find a file
2019-12-10 21:04:51 +00:00
panos updating to use the terraform plugin sdk 2019-12-10 10:26:36 -08:00
scripts Adding scripts and GNUmakefile, gofmt'ing main.go 2017-12-15 09:07:59 -08:00
vendor updating to use the terraform plugin sdk 2019-12-10 10:26:36 -08:00
website new provider flag to verify the PAN-OS HTTPS cert 2019-11-19 07:28:06 -08:00
.gitignore Codify infrastructure for running acceptance tests 2019-03-12 10:09:35 +00:00
.travis.yml updating travis and makefile for go module switch 2019-02-04 14:13:39 -08:00
CHANGELOG.md Cleanup after v1.6.2 release 2019-12-10 21:04:51 +00:00
GNUmakefile updating travis and makefile for go module switch 2019-02-04 14:13:39 -08:00
go.mod updating to use the terraform plugin sdk 2019-12-10 10:26:36 -08:00
go.sum updating to use the terraform plugin sdk 2019-12-10 10:26:36 -08:00
LICENSE Initial commit 2017-10-23 12:08:39 -07:00
main.go updating to use the terraform plugin sdk 2019-12-10 10:26:36 -08:00
README.md provider: Require Go 1.11 in TravisCI and README 2019-01-07 19:05:47 -05:00

Terraform Provider for Palo Alto Networks PANOS

Requirements

  • Terraform 0.10.x
  • Go 1.11 (to build the provider plugin)

Building The Provider

Clone repository to: $GOPATH/src/github.com/terraform-providers/terraform-provider-panos

$ mkdir -p $GOPATH/src/github.com/terraform-providers; cd $GOPATH/src/github.com/terraform-providers
$ git clone git@github.com:terraform-providers/terraform-provider-panos

Enter the provider directory and build the provider

$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-panos
$ make build

Using the provider

If you're building the provider, follow the instructions to install it as a plugin. After placing it into your plugins directory, run terraform init to initialize it.

See the Palo Alto Networks PANOS Provider documentation to get started using the provider.

Developing the Provider

If you wish to work on the provider, you'll first need Go installed on your machine (version 1.11+ is required). You'll also need to correctly setup a GOPATH, as well as adding $GOPATH/bin to your $PATH.

To compile the provider, run make build. This will build the provider and put the provider binary in the $GOPATH/bin directory.

$ make build
...
$ $GOPATH/bin/terraform-provider-panos
...

In order to test the provider, you can simply run make test.

$ make test

In order to run the full suite of Acceptance tests, run make testacc.

Note: Acceptance tests create real resources, and often cost money to run.

$ make testacc