Skip to content
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
add registration of template
  • Loading branch information
AndresMarcelo7 committed Jul 15, 2025
commit 86704dff81e344d01332b0b2836f90166e46771a
20 changes: 20 additions & 0 deletions packages/backstage/dev/cm-backstage-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,16 @@ data:

scaffolder:
# see https://backstage.io/docs/features/software-templates/configuration for software template options
defaultAuthor:
name: CNOE Team
email: [email protected]
defaultCommitMessage: 'Creando recursos AWS a través de CNOE'
# Registro de los templates personalizados
registry:
- type: file
target: /opt/app-root/src/packages/backend/templates/ec2-template.yaml
rules:
- allow: [Template]

catalog:
import:
Expand All @@ -108,6 +118,16 @@ data:
# Examples from a public GitHub repository.
- type: url
target: https://github.com/awslabs/backstage-templates-on-eks/blob/main/catalog-info.yaml
# Registrar nuestro componente de EC2
- type: file
target: /opt/app-root/src/packages/backstage/ec2-component.yaml
rules:
- allow: [Component, API]
# Registrar nuestro template de EC2
- type: file
target: /opt/app-root/src/packages/backstage/templates/ec2-template.yaml
rules:
- allow: [Template]
## Uncomment these lines to add an example org
# - type: url
# target: https://github.com/backstage/backstage/blob/master/packages/catalog-model/examples/acme-corp.yaml
Expand Down