Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paloaltonetworks/terraform-provider-prismacloud
Terraform PrismaCloud provider
https://github.com/paloaltonetworks/terraform-provider-prismacloud
prisma-cloud terraform terraform-provider
Last synced: 3 days ago
JSON representation
Terraform PrismaCloud provider
- Host: GitHub
- URL: https://github.com/paloaltonetworks/terraform-provider-prismacloud
- Owner: PaloAltoNetworks
- License: mpl-2.0
- Created: 2020-07-03T00:41:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-12T08:56:13.000Z (2 months ago)
- Last Synced: 2024-09-12T19:34:24.364Z (2 months ago)
- Topics: prisma-cloud, terraform, terraform-provider
- Language: Go
- Homepage: https://www.terraform.io/docs/providers/prismacloud/
- Size: 21.8 MB
- Stars: 54
- Watchers: 18
- Forks: 65
- Open Issues: 32
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Support: SUPPORT.md
Awesome Lists containing this project
README
Terraform Provider for Palo Alto Networks Prisma Cloud
======================================================- Website: https://www.terraform.io
- Documentation: https://www.terraform.io/docs/providers/prismacloud/index.html
- [![Gitter chat](https://badges.gitter.im/hashicorp-terraform/Lobby.png)](https://gitter.im/hashicorp-terraform/Lobby)
- Mailing list: [Google Groups](http://groups.google.com/group/terraform-tool)Requirements
------------- [Terraform](https://www.terraform.io/downloads.html) 0.11.x or higher
- [Go](https://golang.org/doc/install) 1.12 (to build the provider plugin)Building The Provider
---------------------Clone repository to: `$GOPATH/src/github.com/terraform-providers/terraform-provider-prismacloud`
```sh
$ mkdir -p $GOPATH/src/github.com/terraform-providers; cd $GOPATH/src/github.com/terraform-providers
$ git clone [email protected]:terraform-providers/terraform-provider-prismacloud
```Enter the provider directory and build the provider
```sh
$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-prismacloud
$ make build
```Using the provider
------------------If you're building the provider, follow the instructions to [install it as a plugin.](https://www.terraform.io/docs/plugins/basics.html#installing-a-plugin) After placing it into your plugins directory, run `terraform init` to initialize it.
See the [Palo Alto Networks Prisma Cloud Provider documentation](https://www.terraform.io/docs/providers/prismacloud/index.html) to get started using the provider.
Developing the Provider
-----------------------If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (version 1.11+ is *required*). You'll also need to correctly set up a [GOPATH](http://golang.org/doc/code.html#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.
```sh
$ make build
...
$ $GOPATH/bin/terraform-provider-prismacloud
...
```To test the provider, you can run `make test`.
```sh
$ make test
```To run the full suite of Acceptance tests, run `make testacc`.
*Note:* Acceptance tests create real resources and often cost money to run.
```sh
$ make testacc
```