-
Notifications
You must be signed in to change notification settings - Fork 0
Add Backstage catalog-info.yaml with RDS and MWAA resources #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| apiVersion: backstage.io/v1alpha1 | ||
| kind: Component | ||
| metadata: | ||
| name: opsverse-tf-modules | ||
| description: | | ||
| A library of reusable Terraform modules for AWS infrastructure, maintained by OpsVerseIO. Includes modules for EC2, S3, RDS, MWAA, and more. | ||
| annotations: | ||
| github.com/project-slug: OpsVerseIO/opsverse-tf-modules | ||
| backstage.io/techdocs-ref: dir:. | ||
| tags: | ||
| - terraform | ||
| - aws | ||
| - infrastructure | ||
| - modules | ||
| links: | ||
| - url: https://github.com/OpsVerseIO/opsverse-tf-modules | ||
| title: GitHub Repository | ||
| icon: github | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Consider adding a |
||
| spec: | ||
| type: library | ||
| lifecycle: production | ||
| owner: OpsVerseIO | ||
| providesApis: [] | ||
| dependsOn: | ||
| - resource:default/tf-rds | ||
| - resource:default/tf-mwaa | ||
|
|
||
| --- | ||
| apiVersion: backstage.io/v1alpha1 | ||
| kind: Resource | ||
| metadata: | ||
| name: tf-rds | ||
| description: AWS RDS instance used by the opsverse-tf-modules Terraform library. | ||
| tags: | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
| - aws | ||
| - rds | ||
| - database | ||
| spec: | ||
| type: database | ||
| owner: OpsVerseIO | ||
| system: opsverse-tf-modules | ||
| dependencyOf: | ||
| - component:default/opsverse-tf-modules | ||
|
|
||
| --- | ||
| apiVersion: backstage.io/v1alpha1 | ||
| kind: Resource | ||
| metadata: | ||
| name: tf-mwaa | ||
| description: AWS MWAA (Managed Workflows for Apache Airflow) instance used by the opsverse-tf-modules Terraform library. | ||
| tags: | ||
| - aws | ||
| - mwaa | ||
| - airflow | ||
| - workflow | ||
| spec: | ||
| type: workflow | ||
| owner: OpsVerseIO | ||
| system: opsverse-tf-modules | ||
| dependencyOf: | ||
| - component:default/opsverse-tf-modules | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice use of multi-line description for the component. This helps with Backstage catalog readability.