Skip to content

Commit

Permalink
Merge pull request #430 from elan-devops/ssl_origin_pull
Browse files Browse the repository at this point in the history
Closes #429 SSL: adding support for origin_pull setting
  • Loading branch information
jacobbednarz authored Jul 25, 2019
2 parents ea949ec + 1a921a6 commit 4465248
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cloudflare/resource_cloudflare_page_rule.go
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ func resourceCloudflarePageRule() *schema.Resource {
"ssl": {
Type: schema.TypeString,
Optional: true,
ValidateFunc: validation.StringInSlice([]string{"off", "flexible", "full", "strict"}, false),
ValidateFunc: validation.StringInSlice([]string{"off", "flexible", "full", "strict", "origin_pull"}, false),
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/page_rule.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Action blocks support the following:
* `server_side_exclude` - (Optional) Whether this action is `"on"` or `"off"`.
* `smart_errors` - (Optional) Whether this action is `"on"` or `"off"`.
* `sort_query_string_for_cache` - (Optional) Whether this action is `"on"` or `"off"`.
* `ssl` - (Optional) Whether to set the SSL mode to `"off"`, `"flexible"`, `"full"`, or `"strict"`.
* `ssl` - (Optional) Whether to set the SSL mode to `"off"`, `"flexible"`, `"full"`, `"strict"`, or `"origin_pull"`.
* `true_client_ip_header` - (Optional) Whether this action is `"on"` or `"off"`.
* `waf` - (Optional) Whether this action is `"on"` or `"off"`.

Expand Down

0 comments on commit 4465248

Please sign in to comment.