Skip to content
Closed
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
119 changes: 58 additions & 61 deletions plugins/hover/manifest.json
Original file line number Diff line number Diff line change
@@ -1,89 +1,86 @@
{
"name": "workflow-plugin-hover",
"version": "0.5.0",
"minEngineVersion": "0.60.6",
"description": "Hover DNS provider for workflow IaC (infra.dns). No official API; mimics the browser-side username+password+TOTP login flow used by pjslauta/hover-dyn-dns.",
"assets": {
"config": true,
"ui": false
},
"author": "GoCodeAlone",
"license": "MIT",
"type": "external",
"tier": "community",
"private": false,
"homepage": "https://github.com/GoCodeAlone/workflow-plugin-hover",
"repository": "https://github.com/GoCodeAlone/workflow-plugin-hover",
"keywords": [
"dns",
"hover",
"iac",
"infra.dns",
"totp"
],
"capabilities": {
"moduleTypes": [
"iac.provider.hover"
],
"resourceTypes": [
"infra.dns",
"infra.dns_delegation"
],
"stepTypes": [],
"triggerTypes": [],
"iacProvider": {
"name": "hover",
"resourceTypes": [
"infra.dns",
"infra.dns_delegation"
]
}
},
"required_secrets": [
{
"name": "HOVER_USERNAME",
"sensitive": false,
"description": "Hover account username",
"prompt": "Hover username"
},
{
"name": "HOVER_PASSWORD",
"sensitive": true,
"description": "Hover account password",
"prompt": "Hover password"
},
{
"name": "HOVER_TOTP_SECRET",
"sensitive": true,
"description": "Base32-encoded TOTP seed from Hover 2FA setup. Plugin generates 6-digit codes per RFC 6238 on each login.",
"prompt": "Hover TOTP seed (base32)"
}
],
"iacProvider": {
"computePlanVersion": "v2"
},
"assets": {
"ui": false,
"config": true
"triggerTypes": []
},
"category": "infrastructure",
"description": "Hover DNS provider for workflow IaC (infra.dns). No official API; mimics the browser-side username+password+TOTP login flow used by pjslauta/hover-dyn-dns.",
"downloads": [
{
"arch": "amd64",
"os": "darwin",
"sha256": "7422e05d9e3eae6510150c2aeec6b6e7e27d88da7ef3cdd6ef253bcba535299a",
"url": "https://github.com/GoCodeAlone/workflow-plugin-hover/releases/download/v0.5.0/workflow-plugin-hover-darwin-amd64.tar.gz"
"sha256": "f22c292fc0230beff3e39a7b19344d74c8b57b77c3254863a7318a7795c8ff6e",
"url": "https://github.com/GoCodeAlone/workflow-plugin-hover/releases/download/v0.5.5/workflow-plugin-hover-darwin-amd64.tar.gz"
},
{
"arch": "arm64",
"os": "darwin",
"sha256": "71fa7eb8ec310b35c23fbde1b962dd08524090454c1d09ad393079466c1f6f84",
"url": "https://github.com/GoCodeAlone/workflow-plugin-hover/releases/download/v0.5.0/workflow-plugin-hover-darwin-arm64.tar.gz"
"sha256": "15923a411f4bd080df50d59db415972acf13415725430a6cbd3af83ad206537b",
"url": "https://github.com/GoCodeAlone/workflow-plugin-hover/releases/download/v0.5.5/workflow-plugin-hover-darwin-arm64.tar.gz"
},
{
"arch": "amd64",
"os": "linux",
"sha256": "7aa275e704322242515b8d8122ea3b259c2b54cbc4608b40c769827f4406bc39",
"url": "https://github.com/GoCodeAlone/workflow-plugin-hover/releases/download/v0.5.0/workflow-plugin-hover-linux-amd64.tar.gz"
"sha256": "b22daef137215a6ed2779fd83d6ef1d3d8c17e16b633d721b34f0ad9aa45e0a9",
"url": "https://github.com/GoCodeAlone/workflow-plugin-hover/releases/download/v0.5.5/workflow-plugin-hover-linux-amd64.tar.gz"
},
{
"arch": "arm64",
"os": "linux",
"sha256": "c3c67fb3cc64b781ac05ca10eb8e11614f3fdb83814c2f1a3be35360df9930fc",
"url": "https://github.com/GoCodeAlone/workflow-plugin-hover/releases/download/v0.5.0/workflow-plugin-hover-linux-arm64.tar.gz"
"sha256": "0c7d4ed6fa3778d1353396db40d2b3b9a8447b452dca9f29d74bc7a134e688e6",
"url": "https://github.com/GoCodeAlone/workflow-plugin-hover/releases/download/v0.5.5/workflow-plugin-hover-linux-arm64.tar.gz"
}
],
"homepage": "https://github.com/GoCodeAlone/workflow-plugin-hover",
"iacProvider": {
"computePlanVersion": "v2"
},
"keywords": [
"dns",
"hover",
"iac",
"infra.dns",
"totp"
],
"license": "MIT",
"minEngineVersion": "0.60.6",
"name": "workflow-plugin-hover",
"private": false,
"repository": "https://github.com/GoCodeAlone/workflow-plugin-hover",
"required_secrets": [
{
"description": "Hover account username",
"name": "HOVER_USERNAME",
"prompt": "Hover username",
"sensitive": false
},
{
"description": "Hover account password",
"name": "HOVER_PASSWORD",
"prompt": "Hover password",
"sensitive": true
},
{
"description": "Base32-encoded TOTP seed from Hover 2FA setup. Plugin generates 6-digit codes per RFC 6238 on each login.",
"name": "HOVER_TOTP_SECRET",
"prompt": "Hover TOTP seed (base32)",
"sensitive": true
}
],
"status": "experimental",
"category": "infrastructure"
"tier": "community",
"type": "external",
"version": "0.5.5"
}