Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@seatgeek/backstage-plugin-aws-catalog-backend
Advanced tools
This plugin offers the ability to ingest certain types of resources from [AWS](https://aws.amazon.com/) into the Backstage catalog.
This plugin offers the ability to ingest certain types of resources from AWS into the Backstage catalog.
Install the @seatgeek/backstage-plugin-aws-catalog-backend package in your backend package:
# From your Backstage root directory
yarn add --cwd packages/backend @seatgeek/backstage-plugin-aws-catalog-backend
Then add the following config to your app-config.yml
:
catalog:
providers:
aws:
myOrganizationAws:
region: 'us-east-1' # required
# Omit the following fields if using IAM roles (https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/loading-node-credentials-iam.html)
accessKeyId: ${AWS_ACCESS_KEY_ID} # optional
secretAccessKey: ${AWS_SECRET_ACCESS_KEY} # optional
sessionToken: ${AWS_SESSION_TOKEN} # optional
You'll then need to add whichever entity providers you wish to use into your Backstage application's packages/backend/src/plugins/catalog.ts
and add it to the CatalogBuilder
.
For example, to add the RDS entity provider:
import { RDSEntityProvider } from '@seatgeek/backstage-plugin-aws-catalog-backend';
// ...
export default async function createPlugin(
env: PluginEnvironment,
): Promise<Router> {
const builder = await CatalogBuilder.create(env);
builder.addEntityProvider(
...RDSEntityProvider.fromConfig(env.config, {
logger: env.logger,
schedule: env.scheduler.createScheduledTaskRunner({
frequency: { days: 1 },
timeout: { minutes: 5 },
}),
// transforms the RDS data from AWS into a ResourceEntity
dbInstanceTransformer: rdsDBInstance => ({
apiVersion: 'backstage.io/v1alpha1',
kind: 'Resource',
metadata: {
name: `db-${db.DBInstanceIdentifier}`,
tags: [db.Engine!],
},
spec: {
type: 'rds',
owner: 'somebody',
},
}),
// optional filter to limit which entities are ingested
dbInstanceFilter: dbInstance => true,
}),
);
// ...
}
FAQs
This plugin offers the ability to ingest certain types of resources from [AWS](https://aws.amazon.com/) into the Backstage catalog.
We found that @seatgeek/backstage-plugin-aws-catalog-backend demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.