diff --git a/docs/index.md b/docs/index.md index e2643f86..639fa4dc 100644 --- a/docs/index.md +++ b/docs/index.md @@ -70,10 +70,6 @@ resource "solacebroker_msg_vpn_queue" "q" { ## Schema -### Required - -- `url` (String) The base URL of the event broker, for example `https://mybroker.example.org:/`. The trailing / can be omitted. - ### Optional - `bearer_token` (String, Sensitive) A bearer token that will be sent in the Authorization header of SEMP requests. Requires TLS transport enabled. Conflicts with username and password. @@ -85,6 +81,7 @@ resource "solacebroker_msg_vpn_queue" "q" { - `retry_max_interval` (String) A [duration](https://pkg.go.dev/maze.io/x/duration#ParseDuration) string indicating the maximum retry interval. The default value is 30s. - `retry_min_interval` (String) A [duration](https://pkg.go.dev/maze.io/x/duration#ParseDuration) string indicating how long to wait after an initial failed request before the first retry. Exponential backoff is used, up to the limit set by retry_max_interval. The default value is 3s. - `skip_api_check` (Boolean) Disable validation of the broker SEMP API for supported platform and minimum version. The default value is false. +- `url` (String) The base URL of the event broker, for example `https://mybroker.example.org:/`. The trailing / can be omitted. - `username` (String) The username to connect to the broker with. Requires password and conflicts with bearer_token. -> All provider configuration values can also be set as environment variables with the same name, but uppercase and with the `SOLACEBROKER_` prefix.