Documentation ¶
Overview ¶
Example (Build_bucket) ¶
package main import ( "os" "github.com/aws-cloudformation/rain/internal/cmd/build" ) func main() { os.Args = []string{ os.Args[0], "-b", "AWS::S3::Bucket", } build.Cmd.Execute() }
Output: AWSTemplateFormatVersion: "2010-09-09" Description: Template generated by rain Resources: MyBucket: Type: AWS::S3::Bucket Properties: {}
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Cmd = &cobra.Command{ Use: "build [<resource type>...]", Short: "Create CloudFormation templates", Long: "Outputs a CloudFormation template containing the named resource types.", Annotations: cmd.TemplateAnnotation, DisableFlagsInUseLine: true, Run: func(cmd *cobra.Command, args []string) { if buildListFlag { types := make([]string, 0) for t := range spec.Cfn.ResourceTypes { types = append(types, t) } sort.Strings(types) fmt.Println(strings.Join(types, "\n")) return } if len(args) == 0 { cmd.Help() return } resources := resolveResources(args) t, err := build.Template(resources, !bareTemplate) if err != nil { panic(err) } out := format.String(t, format.Options{ JSON: buildJSON, }) fmt.Println(out) }, }
Cmd is the build command's entrypoint
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.