@electrolux-oss/plugin-infrawallet-backend 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/seeds/init.js DELETED
@@ -1,214 +0,0 @@
1
- exports.seed = async knex => {
2
- await knex('category_mappings').insert([
3
- {
4
- provider: 'azure',
5
- category: 'Analytics',
6
- // make it compatible with sqlite
7
- cloud_service_names: JSON.stringify(['Event Hubs', 'Log Analytics']),
8
- },
9
- {
10
- provider: 'azure',
11
- category: 'Application Integration',
12
- cloud_service_names: JSON.stringify(['Logic Apps']),
13
- },
14
- {
15
- provider: 'azure',
16
- category: 'Compute',
17
- cloud_service_names: JSON.stringify([
18
- 'Virtual Machines',
19
- 'Azure App Service',
20
- 'Functions',
21
- ]),
22
- },
23
- {
24
- provider: 'azure',
25
- category: 'Containers',
26
- cloud_service_names: JSON.stringify([
27
- 'Azure Container Apps',
28
- 'Container Registry',
29
- ]),
30
- },
31
- {
32
- provider: 'azure',
33
- category: 'Database',
34
- cloud_service_names: JSON.stringify([
35
- 'Azure Cosmos DB',
36
- 'Azure Data Factory v2',
37
- 'Azure Database for MySQL',
38
- 'Redis Cache',
39
- 'SQL Database',
40
- ]),
41
- },
42
- {
43
- provider: 'azure',
44
- category: 'Developer Tools',
45
- cloud_service_names: JSON.stringify([
46
- 'Azure DevOps',
47
- 'Notification Hubs',
48
- 'Visual Studio Subscription',
49
- ]),
50
- },
51
- {
52
- provider: 'azure',
53
- category: 'DevOps',
54
- cloud_service_names: JSON.stringify(['Azure Monitor']),
55
- },
56
- {
57
- provider: 'azure',
58
- category: 'Internet of Things',
59
- cloud_service_names: JSON.stringify(['Event Grid', 'IoT Hub']),
60
- },
61
- {
62
- provider: 'azure',
63
- category: 'Artificial Intelligence',
64
- cloud_service_names: JSON.stringify([
65
- 'Azure Cognitive Search',
66
- 'Azure Databricks',
67
- 'Cognitive Services',
68
- ]),
69
- },
70
- {
71
- provider: 'azure',
72
- category: 'Management & Governance',
73
- cloud_service_names: JSON.stringify(['Network Watcher']),
74
- },
75
- {
76
- provider: 'azure',
77
- category: 'Networking',
78
- cloud_service_names: JSON.stringify([
79
- 'Azure DNS',
80
- 'Azure Front Door Service',
81
- 'Bandwidth',
82
- 'Content Delivery Network',
83
- 'Load Balancer',
84
- 'NAT Gateway',
85
- 'Network Traversal',
86
- 'Service Bus',
87
- 'Traffic Manager',
88
- 'Virtual Network',
89
- 'VPN Gateway',
90
- ]),
91
- },
92
- {
93
- provider: 'azure',
94
- category: 'Security, Identity, & Compliance',
95
- cloud_service_names: JSON.stringify([
96
- 'Azure Firewall',
97
- 'Key Vault',
98
- 'Microsoft Defender for Cloud',
99
- ]),
100
- },
101
- {
102
- provider: 'azure',
103
- category: 'Storage',
104
- cloud_service_names: JSON.stringify(['Storage']),
105
- },
106
- {
107
- provider: 'aws',
108
- category: 'Analytics',
109
- cloud_service_names: JSON.stringify([
110
- 'Amazon Kinesis',
111
- 'Amazon Managed Streaming for Apache Kafka',
112
- 'Amazon QuickSight',
113
- 'AWS Glue',
114
- ]),
115
- },
116
- {
117
- provider: 'aws',
118
- category: 'Application Integration',
119
- cloud_service_names: JSON.stringify([
120
- 'Amazon API Gateway',
121
- 'Amazon Simple Notification Service',
122
- 'Amazon Simple Queue Service',
123
- ]),
124
- },
125
- {
126
- provider: 'aws',
127
- category: 'Cloud Financial Management',
128
- cloud_service_names: JSON.stringify(['AWS Cost Explorer']),
129
- },
130
- {
131
- provider: 'aws',
132
- category: 'Compute',
133
- cloud_service_names: JSON.stringify([
134
- 'EC2 - Other',
135
- 'Amazon Elastic Compute Cloud - Compute',
136
- 'AWS Lambda',
137
- ]),
138
- },
139
- {
140
- provider: 'aws',
141
- category: 'Containers',
142
- cloud_service_names: JSON.stringify([
143
- 'Amazon Elastic Container Service for Kubernetes',
144
- 'Amazon Elastic Container Registry (ECR)',
145
- ]),
146
- },
147
- {
148
- provider: 'aws',
149
- category: 'Database',
150
- cloud_service_names: JSON.stringify([
151
- 'Amazon DynamoDB',
152
- 'Amazon ElastiCache',
153
- 'Amazon Relational Database Service',
154
- 'Amazon Timestream',
155
- 'DynamoDB Accelerator (DAX)',
156
- ]),
157
- },
158
- {
159
- provider: 'aws',
160
- category: 'Developer Tools',
161
- cloud_service_names: JSON.stringify(['AWS CloudShell', 'AWS X-Ray']),
162
- },
163
- {
164
- provider: 'aws',
165
- category: 'Internet of Things',
166
- cloud_service_names: JSON.stringify(['AWS IoT']),
167
- },
168
- {
169
- provider: 'aws',
170
- category: 'Management & Governance',
171
- cloud_service_names: JSON.stringify([
172
- 'AmazonCloudWatch',
173
- 'AWS CloudTrail',
174
- 'AWS Config',
175
- 'AWS Service Catalog',
176
- ]),
177
- },
178
- {
179
- provider: 'aws',
180
- category: 'Migration',
181
- cloud_service_names: JSON.stringify([
182
- 'AWS Migration Hub Refactor Spaces',
183
- ]),
184
- },
185
- {
186
- provider: 'aws',
187
- category: 'Networking',
188
- cloud_service_names: JSON.stringify([
189
- 'Amazon Elastic Load Balancing',
190
- 'Amazon Route 53',
191
- 'Amazon Virtual Private Cloud',
192
- ]),
193
- },
194
- {
195
- provider: 'aws',
196
- category: 'Security, Identity, & Compliance',
197
- cloud_service_names: JSON.stringify([
198
- 'Amazon GuardDuty',
199
- 'AWS Key Management Service',
200
- 'AWS Secrets Manager',
201
- 'AWS Security Hub',
202
- 'AWS WAF',
203
- ]),
204
- },
205
- {
206
- provider: 'aws',
207
- category: 'Storage',
208
- cloud_service_names: JSON.stringify([
209
- 'Amazon Glacier',
210
- 'Amazon Simple Storage Service',
211
- ]),
212
- },
213
- ]);
214
- };