-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
51 lines (51 loc) · 1.28 KB
/
plugin.json
File metadata and controls
51 lines (51 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "workflow-plugin-hover",
"version": "0.5.7",
"description": "Hover DNS provider (browser-style login + TOTP, no official SDK)",
"author": "GoCodeAlone",
"license": "MIT",
"type": "external",
"tier": "community",
"private": false,
"minEngineVersion": "0.60.6",
"keywords": [
"dns",
"hover",
"iac",
"infra.dns",
"totp"
],
"homepage": "https://github.com/GoCodeAlone/workflow-plugin-hover",
"repository": "https://github.com/GoCodeAlone/workflow-plugin-hover",
"capabilities": {
"moduleTypes": [
"iac.provider.hover"
],
"stepTypes": [],
"triggerTypes": [],
"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 shown when you enabled 2FA. The plugin generates 6-digit codes per RFC 6238 on each login.",
"prompt": "Hover TOTP seed (base32, 16+ chars)"
}
]
}