feat: add host suffix to /api/v2/deployment/ssh (#17269)

Adds `HostnameSuffix` to ssh config API and deprecates `HostnamePrefix`. We will still support setting and using the prefix for some time.
This commit is contained in:
Spike Curtis
2025-04-07 11:57:10 +04:00
committed by GitHub
parent 87d9ff0973
commit 24248736ac
8 changed files with 27 additions and 6 deletions

5
coderd/apidoc/docs.go generated
View File

@ -14754,6 +14754,11 @@ const docTemplate = `{
"type": "object",
"properties": {
"hostname_prefix": {
"description": "HostnamePrefix is the prefix we append to workspace names for SSH hostnames.\nDeprecated: use HostnameSuffix instead.",
"type": "string"
},
"hostname_suffix": {
"description": "HostnameSuffix is the suffix to append to workspace names for SSH hostnames.",
"type": "string"
},
"ssh_config_options": {