You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnfalse, fmt.Errorf("error from Incapsula service when checking if Policy Asset Association exist: %s-%s-%s, err: %s", policyID, assetID, assetType, err)
75
+
returnfalse, fmt.Errorf("error from Incapsula service when checking if Policy Asset Association exist: %s/%s/%s, err: %s", policyID, assetID, assetType, err)
// If policy asset is not associated 404 will be returned from policies
86
86
ifresp.StatusCode!=200 {
87
-
returnfalse, fmt.Errorf("Error status code %d from Incapsula service when checking the reading Policy Asset Association: %s-%s-%s, response is: %s", resp.StatusCode, policyID, assetID, assetType, string(responseBody))
87
+
returnfalse, fmt.Errorf("Error status code %d from Incapsula service when checking the reading Policy Asset Association: %s/%s/%s, response is: %s", resp.StatusCode, policyID, assetID, assetType, string(responseBody))
Description: "The certificate file in base64 format.",
32
32
Type: schema.TypeString,
33
33
Required: true,
34
-
ForceNew: true,
35
34
},
36
35
// Optional Arguments
37
36
"private_key": {
38
37
Description: "The private key of the certificate in base64 format. Optional in case of PFX certificate file format. This will be encoded in sha256 in terraform state.",
39
38
Type: schema.TypeString,
40
39
Optional: true,
41
-
ForceNew: true,
42
40
Sensitive: true,
43
41
},
44
42
"passphrase": {
45
43
Description: "The passphrase used to protect your SSL certificate. This will be encoded in sha256 in terraform state.",
0 commit comments