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

docs: remove 'alpha' notice from custom health check http headers feature #623

Merged
merged 1 commit into from
Dec 7, 2022
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/resources/service_vcl.md
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ Optional:

- `check_interval` (Number) How often to run the Healthcheck in milliseconds. Default `5000`
- `expected_response` (Number) The status code expected from the host. Default `200`
- `headers` (Set of String) Custom health check HTTP headers (e.g. if your health check requires an API key to be provided). This feature is part of an alpha release, which may be subject to breaking changes and improvements over time
- `headers` (Set of String) Custom health check HTTP headers (e.g. if your health check requires an API key to be provided).
- `http_version` (String) Whether to use version 1.0 or 1.1 HTTP. Default `1.1`
- `initial` (Number) When loading a config, the initial number of probes to be seen as OK. Default `3`
- `method` (String) Which HTTP method to use. Default `HEAD`
Expand Down
2 changes: 1 addition & 1 deletion fastly/block_fastly_service_healthcheck.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func (h *HealthCheckServiceAttributeHandler) GetSchema() *schema.Schema {
Type: schema.TypeString,
},
Optional: true,
Description: "Custom health check HTTP headers (e.g. if your health check requires an API key to be provided). This feature is part of an alpha release, which may be subject to breaking changes and improvements over time",
Description: "Custom health check HTTP headers (e.g. if your health check requires an API key to be provided).",
},
"host": {
Type: schema.TypeString,
Expand Down