Skip to content

Commit

Permalink
Docs - updated cdn_frontdoor_origin_group docs to reflect valid hea…
Browse files Browse the repository at this point in the history
…lth probe intervals (hashicorp#28143)

* Update cdn_frontdoor_origin_group.html.markdown

* Update cdn_frontdoor_origin_group.html.markdown

* Update cdn_frontdoor_origin_group_resource.go
  • Loading branch information
bubbletroubles authored Dec 2, 2024
1 parent 815f252 commit b240052
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func resourceCdnFrontDoorOriginGroup() *pluginsdk.Resource {
"interval_in_seconds": {
Type: pluginsdk.TypeInt,
Required: true,
ValidateFunc: validation.IntBetween(5, 31536000),
ValidateFunc: validation.IntBetween(1, 255),
},

"path": {
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/cdn_frontdoor_origin_group.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ A `health_probe` block supports the following:

* `protocol` - (Required) Specifies the protocol to use for health probe. Possible values are `Http` and `Https`.

* `interval_in_seconds` - (Required) Specifies the number of seconds between health probes. Possible values are between `5` and `31536000` seconds (inclusive).
* `interval_in_seconds` - (Required) Specifies the number of seconds between health probes. Possible values are between `1` and `255` seconds (inclusive).

* `request_type` - (Optional) Specifies the type of health probe request that is made. Possible values are `GET` and `HEAD`. Defaults to `HEAD`.

Expand Down

0 comments on commit b240052

Please sign in to comment.