Skip to content

Commit

Permalink
Merge pull request #129 from electrolux-oss/check-devtools
Browse files Browse the repository at this point in the history
  • Loading branch information
gluckzhang authored Jan 2, 2025
2 parents de0860b + f2dfdfc commit 928fba8
Show file tree
Hide file tree
Showing 4 changed files with 121 additions and 138 deletions.
10 changes: 5 additions & 5 deletions ADOPTERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ _We are proud to recognize the organizations that have adopted InfraWallet to ma

_If your organization uses InfraWallet, we'd love to have you listed! Simply submit a Pull Request to add your organization name to the list below._

| Organization | Contact(s) |
| ---------------------------------------- | -------------------------------------------------- |
| [Electrolux](https://www.electrolux.com) | [@kondrashevich](https://github.com/kondrashevich) |
| [Alithya](https://www.alithya.com) | [@fjudith](https://github.com/fjudith) |
| [Aurora Innovation](https://github.com/aurorainnovation) | [@O5ten](https://github.com/O5ten) |
| Organization | Contact(s) |
| -------------------------------------------------------- | -------------------------------------------------- |
| [Electrolux](https://www.electrolux.com) | [@kondrashevich](https://github.com/kondrashevich) |
| [Alithya](https://www.alithya.com) | [@fjudith](https://github.com/fjudith) |
| [Aurora Innovation](https://github.com/aurorainnovation) | [@O5ten](https://github.com/O5ten) |
245 changes: 114 additions & 131 deletions plugins/infrawallet-backend/config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,139 +2,122 @@ export interface Config {
backend: {
infraWallet: {
integrations: {
azure?: [
{
name: string;
subscriptionId: string;
clientId: string;
tenantId: string;
/**
* @visibility secret
*/
clientSecret: string;
tags?: string[];
},
];
aws?: [
{
name: string;
accountId: string;
assumedRoleName?: string;
/**
* @visibility secret
*/
accessKeyId?: string;
/**
* @visibility secret
*/
accessKeySecret?: string;
tags?: string[];
filters?: [
{
type: string;
attribute: string;
pattern: string;
},
];
},
];
gcp?: [
{
name: string;
keyFilePath: string;
projectId: string;
datasetId: string;
tableId: string;
tags?: string[];
},
];
confluent?: [
{
name: string;
/**
* @visibility secret
*/
apiKey: string;
/**
* @visibility secret
*/
apiSecret: string;
tags?: string[];
},
];
mongoatlas?: [
{
name: string;
orgId: string;
/**
* @visibility secret
*/
publicKey: string;
/**
* @visibility secret
*/
privateKey: string;
tags?: string[];
},
];
datadog?: [
{
name: string;
/**
* @visibility secret
*/
apiKey: string;
/**
* @visibility secret
*/
applicationKey: string;
ddSite: string;
filters?: [
{
type: string;
attribute: string;
pattern: string;
},
];
},
];
mock?: [
{
name: string;
},
];
azure?: {
name: string;
subscriptionId: string;
clientId: string;
tenantId: string;
/**
* @visibility secret
*/
clientSecret: string;
tags?: string[];
}[];
aws?: {
name: string;
accountId: string;
assumedRoleName?: string;
/**
* @visibility secret
*/
accessKeyId?: string;
/**
* @visibility secret
*/
accessKeySecret?: string;
tags?: string[];
filters?: [
{
type: string;
attribute: string;
pattern: string;
},
];
}[];
gcp?: {
name: string;
/**
* @visibility secret
*/
keyFilePath: string;
projectId: string;
datasetId: string;
tableId: string;
tags?: string[];
}[];
confluent?: {
name: string;
/**
* @visibility secret
*/
apiKey: string;
/**
* @visibility secret
*/
apiSecret: string;
tags?: string[];
}[];
mongoatlas?: {
name: string;
orgId: string;
/**
* @visibility secret
*/
publicKey: string;
/**
* @visibility secret
*/
privateKey: string;
tags?: string[];
}[];
datadog?: {
name: string;
/**
* @visibility secret
*/
apiKey: string;
/**
* @visibility secret
*/
applicationKey: string;
ddSite: string;
filters?: [
{
type: string;
attribute: string;
pattern: string;
},
];
}[];
mock?: {
name: string;
}[];
};
metricProviders?: {
datadog?: [
{
name: string;
/**
* @visibility secret
*/
apiKey: string;
/**
* @visibility secret
*/
applicationKey: string;
ddSite: string;
},
];
grafanaCloud?: [
{
name: string;
url: string;
datasourceUid: string;
/**
* @visibility secret
*/
token: string;
},
];
mock?: [
{
name: string;
},
];
datadog?: {
name: string;
/**
* @visibility secret
*/
apiKey: string;
/**
* @visibility secret
*/
applicationKey: string;
ddSite: string;
}[];
grafanaCloud?: {
name: string;
url: string;
datasourceUid: string;
/**
* @visibility secret
*/
token: string;
}[];
mock?: {
name: string;
}[];
};
};
};
Expand Down
2 changes: 1 addition & 1 deletion plugins/infrawallet-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@electrolux-oss/plugin-infrawallet-backend",
"version": "0.2.0",
"version": "0.2.1",
"backstage": {
"role": "backend-plugin",
"pluginId": "infrawallet",
Expand Down
2 changes: 1 addition & 1 deletion plugins/infrawallet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@electrolux-oss/plugin-infrawallet",
"version": "0.2.0",
"version": "0.2.1",
"backstage": {
"role": "frontend-plugin",
"pluginId": "infrawallet",
Expand Down

0 comments on commit 928fba8

Please sign in to comment.