Skip to content

Commit 92ea9c5

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents b6cece7 + 10f0a1f commit 92ea9c5

9 files changed

+738
-173
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 3.32.0 (Mar 31, 2025)
2+
3+
IMPROVEMENTS:
4+
- support sub account on incapsula_mtls_imperva_to_origin_certificate_site_association resource ([#540](https://github.com/imperva/terraform-provider-incapsula/pull/540)
5+
- Added support for ref_id and active fields in incapsula_site_v3 resource ([#544](https://github.com/imperva/terraform-provider-incapsula/pull/544))
6+
- Added site masking settings to site-log-configuration resource ([#545](https://github.com/imperva/terraform-provider-incapsula/pull/545))
7+
8+
19
## 3.31.0 (Mar 24, 2025)
210

311
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.31.0
9+
VERSION=3.32.0
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.31.0"}
37+
return &Client{config: config, httpClient: client, providerVersion: "3.32.0"}
3838
}
3939

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

incapsula/data_source_ssl_instructions_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func TestIncapsulaSSL_Instructions(t *testing.T) {
1919
CheckDestroy: nil,
2020
Steps: []resource.TestStep{
2121
{
22-
Config: testAccCheckIncapsulaSiteV3Domain(t, "b-"+domain),
22+
Config: testAccCheckIncapsulaSiteV3Domain("b-" + domain),
2323
Check: resource.ComposeTestCheckFunc(
2424
resource.TestCheckResourceAttr(dataSourceName, "domain_ids.#", "1"),
2525
resource.TestCheckResourceAttr(dataSourceName, "instructions.#", "1"),
@@ -37,8 +37,8 @@ func TestIncapsulaSSL_Instructions(t *testing.T) {
3737
})
3838
}
3939

40-
func testAccCheckIncapsulaSiteV3Domain(t *testing.T, domain string) string {
41-
result := checkIncapsulaSiteConfigBasic(GenerateTestDomain(t)) + fmt.Sprintf(`
40+
func testAccCheckIncapsulaSiteV3Domain(domain string) string {
41+
result := fmt.Sprintf(`
4242
4343
resource "incapsula_site_v3" "%s" {
4444
name = "%s"

incapsula/resource_data_center_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
const dataCenterName = "Example data center"
1313
const dataCenterResourceName = "incapsula_data_center.testacc-terraform-data-center"
1414

15-
func TestAccIncapsulaDataCenter_Basic(t *testing.T) {
15+
func testAccIncapsulaDataCenter_Basic(t *testing.T) {
1616
resource.Test(t, resource.TestCase{
1717
PreCheck: func() { testAccPreCheck(t) },
1818
Providers: testAccProviders,

0 commit comments

Comments
 (0)