Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions catalog-info.yaml
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
Copy link
Contributor Author

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.

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
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding a system entity if you plan to group related modules/resources in the future.

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:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The dependencyOf field is correctly used to link this resource to the component.

- 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