Skip to content

Latest commit

 

History

History
 
 

scaffolder-backend-module-hcl

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

scaffolder-backend-module-hcl

This contains a collection of actions to use in scaffolder templates for working with HCL (Hashicorp Configuration Language). See https://github.com/hashicorp/hcl to learn more about HCL.

Getting started

From your Backstage root directory

# From your Backstage root directory
yarn add --cwd packages/backend @seatgeek/backstage-plugin-scaffolder-backend-module-hcl

Then ensure that both the scaffolder and this module are added to your backend:

// In packages/backend/src/index.ts
const backend = createBackend();
// ...
backend.add(import('@seatgeek/backstage-plugin-scaffolder-backend-module-hcl'));

After that you can use the actions in your template.

Actions

  • hcl:merge Merge HCL strings
  • hcl:merge:write Merge HCL strings and write to a file
  • hcl:merge:files Merge HCL files
  • hcl:merge:files:write Merge HCL files and write to a file