package

You can use the packages key to download and install pre-packaged applications and components. On Windows systems, the packages key supports only the MSI installer. The package method maps to the AWS::CloudFormation::Init packages section.

Example

package("yum",
  httpd: [],
  jq: [],
)

Generates:

AWS::CloudFormation::Init:
  configSets:
    default:
    - main
  main:
    packages:
      yum:
        httpd: []
        jq: []

Back to DSL Docs