open-nomad/website/content/docs/configuration/ui.mdx
Tim Gross 39acac33a0
ui: change Consul/Vault base URL field name (#11589)
Give ourselves some room for extension in the UI configuration block
by naming the field `ui_url`, which will let us have an `api_url`.
Fix the template path to ensure we're getting the right value from the
API.
2021-11-30 13:20:29 -05:00

70 lines
2.3 KiB
Plaintext

---
layout: docs
page_title: ui Stanza - Agent Configuration
description: |-
The "ui" stanza configures the Nomad agent's web UI.
---
# `ui` Stanza
<Placement groups={['ui']} />
The `ui` stanza configures the Nomad agent's [web UI].
```hcl
ui {
enabled = true
consul {
ui_url = "https://consul.example.com:8500/ui"
}
vault {
ui_url = "https://vault.example.com:8200/ui"
}
}
```
A default `ui` stanza is automatically merged with all Nomad agent
configurations. Note that the UI can be served from any Nomad agent,
and the configuration is individual to each agent.
## `ui` Parameters
- `enabled` `(bool: true)` - Specifies whether the web UI is
enabled. If disabled, the `/ui/` path will return an empty web page.
- `consul` <code>([Consul]: nil)</code> - Configures integrations
between the Nomad web UI and the Consul web UI.
- `vault` <code>([Vault]: nil)</code> - Configures integrations
between the Nomad web UI and the Vault web UI.
## `consul` Parameters
- `ui_url` `(string: "")` - Specifies the full base URL to a Consul
web UI (for example: `https://consul.example.com:8500/ui`. This URL
is used to build links from the Nomad web UI to a Consul web
UI. Note that this URL will not typically be the same one used for
the agent's [`consul.address`]; the `consul.address` is the URL used
by the Nomad to communicate with Consul, whereas the
`ui.consul.ui_url` is the URL you'll visit in your browser. If
this field is omitted, this integration will be disabled.
## `vault` Parameters
- `ui_url` `(string: "")` - Specifies the full base URL to a Vault
web UI (for example: `https://vault.example.com:8200/ui`. This URL
is used to build links from the Nomad web UI to a Vault web
UI. Note that this URL will not typically be the same one used for
the agent's [`vault.address`]; the `vault.address` is the URL used
by the Nomad to communicate with Vault, whereas the
`ui.vault.ui_url` is the URL you'll visit in your browser. If
this field is omitted, this integration will be disabled.
[web UI]: https://learn.hashicorp.com/collections/nomad/web-ui
[Consul]: /docs/configuration/ui#consul-parameters
[Vault]: /docs/configuration/ui#vault-parameters
[`consul.address`]: /docs/configuration/consul#address
[`vault.address`]: /docs/configuration/vault#address