No description
  • Go 98.1%
  • Shell 0.7%
  • HTML 0.6%
  • Makefile 0.6%
Find a file
OpenTofu Core Development Team f8df3a9f81 Apply GitHub workflow changes
2025-11-18 12:26:00 +02:00
.github/workflows Apply GitHub workflow changes 2025-11-18 12:26:00 +02:00
examples Upgrade Terraform examples to v0.12 2020-01-03 14:49:37 -08:00
incapsula Bug fix for domain validation 2020-01-21 13:51:25 -05:00
scripts Update makefile and add scripts directory 2019-03-01 17:09:51 +13:00
vendor Upgrade to standalone SDK 2020-01-03 09:18:16 -08:00
website Fix filename 2020-01-24 07:40:56 -08:00
.gitignore Add resources 2019-04-19 14:02:31 -07:00
.travis.yml Add Travis configuration 2019-03-01 17:24:28 +13:00
CHANGELOG.md Cleanup after v2.1.0 release 2020-01-28 21:52:56 +00:00
GNUmakefile Adding WAF Security Rules and Certificate Management 2019-07-14 09:20:30 -07:00
go.mod Upgrade to standalone SDK 2020-01-03 09:18:16 -08:00
go.sum Upgrade to standalone SDK 2020-01-03 09:18:16 -08:00
LICENSE Update markdown files 2019-03-01 17:24:54 +13:00
main.go Upgrade to standalone SDK 2020-01-03 09:18:16 -08:00
README.md Update README.md 2020-12-08 10:03:51 -07:00

Please note: This Terraform provider is archived, per our provider archiving process. What does this mean?

  1. The code repository and all commit history will still be available.
  2. Existing released binaries will remain available on the releases site.
  3. Issues and pull requests are not being monitored.
  4. New releases will not be published.

If anyone from the community or an interested third party is willing to maintain it, they can fork the repository and publish it to the Terraform Registry. If you are interested in maintaining this provider, please reach out to the Terraform Provider Development Program at terraform-provider-dev@hashicorp.com.

Terraform Incapsula Provider

Maintainers

This provider plugin is maintained by the team at Imperva.

Requirements

  • Terraform 0.12.x
  • Go 1.13 (to build the provider plugin)

Building The Provider

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

$ git clone git@github.com:terraform-providers/terraform-provider-incapsula $GOPATH/src/github.com/terraform-providers/terraform-provider-incapsula

Enter the provider directory and build the provider

$ cd $GOPATH/src/github.com/terraform-providers/terraform-provider-incapsula
$ 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. Documentation about the provider specific configuration options can be found on the provider's website.

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 bin
...
$ $GOPATH/bin/terraform-provider-incapsula
...

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