-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
97 lines (97 loc) · 3.2 KB
/
plugin.json
File metadata and controls
97 lines (97 loc) · 3.2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "workflow-plugin-azure",
"version": "0.0.0",
"author": "GoCodeAlone",
"description": "Microsoft Azure infrastructure provider: ACI, AKS, SQL, Redis, VNet, LB, DNS, ACR, APIM, NSG, MSI, Blob Storage, App Service Certificates",
"license": "MIT",
"type": "external",
"tier": "community",
"minEngineVersion": "0.73.0",
"required_secrets": [
{
"name": "AZURE_CLIENT_ID",
"sensitive": false,
"description": "Azure AD app (service principal) client ID for DefaultAzureCredential. Referenced as ${AZURE_CLIENT_ID}.",
"prompt": "Azure client ID"
},
{
"name": "AZURE_CLIENT_SECRET",
"sensitive": true,
"description": "Azure AD app client secret. Referenced as ${AZURE_CLIENT_SECRET}.",
"prompt": "Azure client secret"
},
{
"name": "AZURE_TENANT_ID",
"sensitive": false,
"description": "Azure AD tenant ID. Referenced as ${AZURE_TENANT_ID}.",
"prompt": "Azure tenant ID"
},
{
"name": "AZURE_SUBSCRIPTION_ID",
"sensitive": false,
"description": "Azure subscription ID for IaC operations. Referenced as ${AZURE_SUBSCRIPTION_ID}.",
"prompt": "Azure subscription ID"
}
],
"iacServices": [
"workflow.plugin.external.iac.IaCProviderRequired",
"workflow.plugin.external.iac.IaCProviderEnumerator",
"workflow.plugin.external.iac.IaCProviderDriftDetector",
"workflow.plugin.external.iac.IaCProviderCredentialRevoker",
"workflow.plugin.external.iac.IaCProviderMigrationRepairer",
"workflow.plugin.external.iac.IaCProviderValidator",
"workflow.plugin.external.iac.IaCProviderDriftConfigDetector",
"workflow.plugin.external.iac.IaCProviderRequirementMapper",
"workflow.plugin.external.iac.IaCProviderRegionLister",
"workflow.plugin.external.iac.IaCProviderOwnership",
"workflow.plugin.external.iac.ResourceDriver",
"workflow.plugin.external.iac.IaCProviderRunner",
"workflow.plugin.external.iac.IaCStateBackend"
],
"keywords": [
"azure",
"iac",
"infrastructure",
"cloud",
"aci",
"aks",
"sql",
"redis",
"vnet"
],
"homepage": "https://github.com/GoCodeAlone/workflow-plugin-azure",
"repository": "https://github.com/GoCodeAlone/workflow-plugin-azure",
"downloads": [
{
"os": "linux",
"arch": "amd64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-azure/releases/download/v0.0.0/workflow-plugin-azure-linux-amd64.tar.gz"
},
{
"os": "linux",
"arch": "arm64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-azure/releases/download/v0.0.0/workflow-plugin-azure-linux-arm64.tar.gz"
},
{
"os": "darwin",
"arch": "amd64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-azure/releases/download/v0.0.0/workflow-plugin-azure-darwin-amd64.tar.gz"
},
{
"os": "darwin",
"arch": "arm64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-azure/releases/download/v0.0.0/workflow-plugin-azure-darwin-arm64.tar.gz"
}
],
"capabilities": {
"configProvider": false,
"moduleTypes": [
"iac.provider"
],
"stepTypes": [],
"triggerTypes": [],
"iacStateBackends": [
"azure_blob"
]
}
}