Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove url_pattterns field from incapsula_security_rule_exception resource #505

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions incapsula/resource_security_rule_exception.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,6 @@ func resourceSecurityRuleException() *schema.Resource {
Optional: true,
DiffSuppressFunc: suppressEquivalentStringDiffs,
},
"url_patterns": {
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 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": {
Description: "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.",
Type: schema.TypeString,
Expand Down