diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d553f5b..d146feea 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 3.25.1 (May 26, 2024) + +IMPROVEMENTS: +- Add optional account id parameter to the site ssl settings resource ([#424](https://github.com/imperva/terraform-provider-incapsula/pull/424)) + + ## 3.25.0 (May 20, 2024) FEATURES: diff --git a/GNUmakefile b/GNUmakefile index d8afa75f..27b21c58 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -6,7 +6,7 @@ NAMESPACE=terraform-providers PKG_NAME=incapsula BINARY=terraform-provider-${PKG_NAME} # Whenever bumping provider version, please update the version in incapsula/client.go (line 27) as well. -VERSION=3.25.0 +VERSION=3.25.1 # Mac Intel Chip OS_ARCH=darwin_amd64 diff --git a/incapsula/client.go b/incapsula/client.go index 0346b2a6..b27c078b 100644 --- a/incapsula/client.go +++ b/incapsula/client.go @@ -34,7 +34,7 @@ type Client struct { func NewClient(config *Config) *Client { client := &http.Client{} - return &Client{config: config, httpClient: client, providerVersion: "3.25.0"} + return &Client{config: config, httpClient: client, providerVersion: "3.25.1"} } func (c *Client) CreateFormDataBody(bodyMap map[string]interface{}) ([]byte, string) { diff --git a/website/docs/r/resource_ato_site_allowlist.html.markdown b/website/docs/r/resource_ato_site_allowlist.html.markdown index 1abf6f18..f983a5ca 100644 --- a/website/docs/r/resource_ato_site_allowlist.html.markdown +++ b/website/docs/r/resource_ato_site_allowlist.html.markdown @@ -3,17 +3,17 @@ subcategory: "Provider Reference" layout: "incapsula" page_title: "incapsula_ato_site_allowlist" description: |- - Provides an Incapsula ATO site allowlist configuration resource. + Provides an Incapsula ATO site allowlist resource. --- # incapsula_ato_site_allowlist -Provides an Incapsula ATO site allowlist configuration resource. +Provides an Incapsula ATO site allowlist resource. ## Example Usage ```hcl -resource "incapsula_ato_site_allowlist_configuration" "demo-terraform-ato-site-allowlist-configuration" { +resource "incapsula_ato_site_allowlist" "demo-terraform-ato-site-allowlist" { account_id = incapsula_site.example-site.account_id site_id = incapsula_site.example-site.id allowlist = [ { "ip": "192.10.20.0", "mask": "24", "desc": "Test IP 1" }, { "ip": "192.10.20.1", "mask": "8", "desc": "Test IP 2" } ]