Skip to content

Commit b3771a7

Browse files
authored
bump version: 3.25.1 (#427)
1 parent ef39480 commit b3771a7

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 3.25.1 (May 26, 2024)
2+
3+
IMPROVEMENTS:
4+
- Add optional account id parameter to the site ssl settings resource ([#424](https://github.com/imperva/terraform-provider-incapsula/pull/424))
5+
6+
17
## 3.25.0 (May 20, 2024)
28

39
FEATURES:

GNUmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ NAMESPACE=terraform-providers
66
PKG_NAME=incapsula
77
BINARY=terraform-provider-${PKG_NAME}
88
# Whenever bumping provider version, please update the version in incapsula/client.go (line 27) as well.
9-
VERSION=3.25.0
9+
VERSION=3.25.1
1010

1111
# Mac Intel Chip
1212
OS_ARCH=darwin_amd64

incapsula/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ type Client struct {
3434
func NewClient(config *Config) *Client {
3535
client := &http.Client{}
3636

37-
return &Client{config: config, httpClient: client, providerVersion: "3.25.0"}
37+
return &Client{config: config, httpClient: client, providerVersion: "3.25.1"}
3838
}
3939

4040
func (c *Client) CreateFormDataBody(bodyMap map[string]interface{}) ([]byte, string) {

website/docs/r/resource_ato_site_allowlist.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ subcategory: "Provider Reference"
33
layout: "incapsula"
44
page_title: "incapsula_ato_site_allowlist"
55
description: |-
6-
Provides an Incapsula ATO site allowlist configuration resource.
6+
Provides an Incapsula ATO site allowlist resource.
77
---
88

99
# incapsula_ato_site_allowlist
1010

11-
Provides an Incapsula ATO site allowlist configuration resource.
11+
Provides an Incapsula ATO site allowlist resource.
1212

1313
## Example Usage
1414

1515
```hcl
16-
resource "incapsula_ato_site_allowlist_configuration" "demo-terraform-ato-site-allowlist-configuration" {
16+
resource "incapsula_ato_site_allowlist" "demo-terraform-ato-site-allowlist" {
1717
account_id = incapsula_site.example-site.account_id
1818
site_id = incapsula_site.example-site.id
1919
allowlist = [ { "ip": "192.10.20.0", "mask": "24", "desc": "Test IP 1" }, { "ip": "192.10.20.1", "mask": "8", "desc": "Test IP 2" } ]

0 commit comments

Comments
 (0)