Get rid of hook

Signed-off-by: josh <josh.timmons@hashicorp.com>
This commit is contained in:
josh
2023-05-29 21:17:12 -04:00
parent 86497612b6
commit 90913537ff
6 changed files with 66 additions and 60 deletions
+23 -1
View File
@@ -51,5 +51,27 @@
},
"files": [
"dist"
]
],
"configSchema": {
"$schema": "https://backstage.io/schema/config-v1",
"title": "@backstage/nomad",
"type": "object",
"properties": {
"nomad": {
"type": "object",
"properties": {
"addr": {
"type": "string",
"description": "The address of the Nomad API. See: https://developer.hashicorp.com/nomad/api-docs#addressing-and-ports",
"visibility": "frontend"
},
"token": {
"type": "string",
"description": "The token to call the Nomad API with. See: https://developer.hashicorp.com/nomad/api-docs#authentication",
"visibility": "secret"
}
}
}
}
}
}