-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
87 lines (87 loc) · 2.95 KB
/
plugin.json
File metadata and controls
87 lines (87 loc) · 2.95 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
{
"name": "workflow-plugin-gcp",
"version": "0.0.0",
"author": "GoCodeAlone",
"description": "GCP infrastructure provider plugin for workflow",
"type": "external",
"tier": "community",
"license": "MIT",
"minEngineVersion": "0.73.0",
"required_secrets": [
{
"name": "GCP_SERVICE_ACCOUNT_JSON",
"sensitive": true,
"description": "GCP service-account JSON key (inline blob). For the credentials.service_account_json path; ADC / Workload Identity deployments may skip. Referenced as ${GCP_SERVICE_ACCOUNT_JSON}.",
"prompt": "GCP service-account JSON"
}
],
"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"
],
"repository": "https://github.com/GoCodeAlone/workflow-plugin-gcp",
"keywords": [
"gcp",
"google-cloud",
"iac",
"provider",
"infrastructure"
],
"capabilities": {
"configProvider": false,
"moduleTypes": [
"iac.provider",
"gcp.credentials",
"storage.gcs"
],
"stepTypes": [],
"triggerTypes": [],
"workflowHandlers": [],
"iacStateBackends": [
"gcs"
]
},
"downloads": [
{
"os": "linux",
"arch": "amd64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-gcp/releases/download/v2.0.0/workflow-plugin-gcp_2.0.0_linux_amd64.tar.gz"
},
{
"os": "linux",
"arch": "arm64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-gcp/releases/download/v2.0.0/workflow-plugin-gcp_2.0.0_linux_arm64.tar.gz"
},
{
"os": "darwin",
"arch": "amd64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-gcp/releases/download/v2.0.0/workflow-plugin-gcp_2.0.0_darwin_amd64.tar.gz"
},
{
"os": "darwin",
"arch": "arm64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-gcp/releases/download/v2.0.0/workflow-plugin-gcp_2.0.0_darwin_arm64.tar.gz"
},
{
"os": "windows",
"arch": "amd64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-gcp/releases/download/v2.0.0/workflow-plugin-gcp_2.0.0_windows_amd64.tar.gz"
},
{
"os": "windows",
"arch": "arm64",
"url": "https://github.com/GoCodeAlone/workflow-plugin-gcp/releases/download/v2.0.0/workflow-plugin-gcp_2.0.0_windows_arm64.tar.gz"
}
]
}