diff --git a/incapsula/resource_security_rule_exception.go b/incapsula/resource_security_rule_exception.go index dd5c83d5..d17e1da7 100644 --- a/incapsula/resource_security_rule_exception.go +++ b/incapsula/resource_security_rule_exception.go @@ -110,7 +110,7 @@ func resourceSecurityRuleException() *schema.Resource { Description: "A comma separated list of url patterns. One of: contains | equals | prefix | suffix | not_equals | not_contain | not_prefix | not_suffix. The patterns should be in accordance with the matching urls sent by the urls parameter.", Type: schema.TypeString, Optional: true, - Deprecated: "This parameter will be deprecated in the next major release. EQUALS is the only supported pattern.", + Deprecated: "This parameter is deprecated and will be removed in the next major release. The resource configures exceptions for the exact URLs specified in the 'urls' parameter, if provided.", DiffSuppressFunc: suppressEquivalentStringDiffs, }, "urls": { diff --git a/website/docs/r/security_rule_exception.html.markdown b/website/docs/r/security_rule_exception.html.markdown index 8e4d80c6..8acabebc 100644 --- a/website/docs/r/security_rule_exception.html.markdown +++ b/website/docs/r/security_rule_exception.html.markdown @@ -100,7 +100,7 @@ At least one Optional argument is required. * `countries` - (Optional) A comma separated list of country codes. * `continents` - (Optional) A comma separated list of continent codes. * `ips=` - (Optional) A comma separated list of IPs or IP ranges, e.g: 192.168.1.1, 192.168.1.1-192.168.1.100 or 192.168.1.1/24 -* `urls=` - (Optional) A comma separated list of resource paths. For example, /home and /admin/index.html are resource paths, while http://www.example.com/home is not. Each URL should be encoded separately using percent encoding as specified by RFC 3986 (http://tools.ietf.org/html/rfc3986#section-2.1). An empty URL list will remove all URLs. urls="/someurl1,/path/to/my/resource/2.html,/some/url/3". +* `urls=` - (Optional) A comma separated list of resource paths. For example, /home and /admin/index.html are resource paths, while http://www.example.com/home is not. Each URL should be encoded separately using percent encoding as specified by RFC 3986 (http://tools.ietf.org/html/rfc3986#section-2.1). An empty URL list will remove all URLs. The resource configures exceptions for the exact URLs listed in this parameter. * `user_agents` - (Optional) A comma separated list of encoded user agents. * `parameters` - (Optional) A comma separated list of encoded parameters.