Documentation ¶
Overview ¶
This file implements !Rain::Module
Package pkg provides functionality similar to the AWS CLI cloudformation package command but has greater flexibility, allowing content to be included anywhere in a template
To include content into your templates, use any of the following either as YAML tags or as one-property objects, much as AWS instrinsic functions are used, e.g. "Fn::Join"
`Rain::Include`: insert the content of the file into the template directly. The file must be in YAML or JSON format. `Rain::Env`: inserts environmental variable value into the template as a string. Variable must be set. `Rain::Embed`: insert the content of the file as a string `Rain::S3Http`: uploads the file or directory (zipping it first) to S3 and returns the HTTP URI (i.e. `https://bucket.s3.region.amazonaws.com/key`) `Rain::S3`: a string value uploads the file or directory (zipping it first) to S3 and returns the S3 URI (i.e. `s3://bucket/key`) `Rain::S3`: an object with the following properties
`Path`: path to the file or directory. If a directory is supplied, it will be zipped before uploading to S3 `BucketProperty`: Name of returned property that will contain the bucket name `KeyProperty`: Name of returned property that will contain the object key `VersionProperty`: (optional) Name of returned property that will contain the object version
`Rain::Module`: Supply a URL to a rain module, which is similar to a CloudFormation module,
but allows for type inheritance. One of the resources in the module yaml file must be called "ModuleExtension", and it must have a Metadata entry called "Extends" that supplies the existing type to be extended. The Parameters section of the module can be used to define additional properties for the extension.
This file contains implementations for `!Rain::` directives
Package pkg provides functionality similar to the AWS CLI cloudformation package command but has greater flexibility, allowing content to be included anywhere in a template
To include content into your templates, use any of the following either as YAML tags or as one-property objects, much as AWS instrinsic functions are used, e.g. "Fn::Join"
`Rain::Include`: insert the content of the file into the template directly. The file must be in YAML or JSON format. `Rain::Env`: inserts environmental variable value into the template as a string. Variable must be set. `Rain::Embed`: insert the content of the file as a string `Rain::S3Http`: uploads the file or directory (zipping it first) to S3 and returns the HTTP URI (i.e. `https://bucket.s3.region.amazonaws.com/key`) `Rain::S3`: a string value uploads the file or directory (zipping it first) to S3 and returns the S3 URI (i.e. `s3://bucket/key`) `Rain::S3`: an object with the following properties
`Path`: path to the file or directory. If a directory is supplied, it will be zipped before uploading to S3 `BucketProperty`: Name of returned property that will contain the bucket name `KeyProperty`: Name of returned property that will contain the object key `VersionProperty`: (optional) Name of returned property that will contain the object version
Index ¶
Constants ¶
This section is empty.
Variables ¶
var Experimental bool
Must be set to true to enable !Rain::Module
Functions ¶
func ConvertCsvToSequence ¶ added in v1.4.4
func ConvertCsvToSequence(csv string) *yaml.Node
Convert a comma delimted string to a sequence node
Types ¶
This section is empty.