Documentation
¶
Overview ¶
Example (Bootstrap_help) ¶
package main
import (
"os"
"github.com/aws-cloudformation/rain/internal/cmd/bootstrap"
)
func main() {
os.Args = []string{
os.Args[0],
"--help",
}
bootstrap.Cmd.Execute()
// Creates a s3 bucket to hold all the artifacts generated and referenced by rain cli
// Usage:
// rain bootstrap
// Aliases:
// bootstrap, bootstrap
// Flags:
// --debug Output debugging information
// -h, --help help for bootstrap
// --no-colour Disable colour output
// -p, --profile string AWS profile name; read from the AWS CLI configuration file
// -r, --region string AWS region to use
// -y, --yes creates the bucket in the account without any user confirmation
}
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Cmd = &cobra.Command{ Use: "bootstrap", Short: "Creates the artifacts bucket", Long: "Creates a s3 bucket to hold all the artifacts generated and referenced by rain cli", Args: cobra.MaximumNArgs(0), Aliases: []string{"bootstrap"}, DisableFlagsInUseLine: true, Run: func(cmd *cobra.Command, args []string) { s3.RainBucket(force) }, }
Cmd is the bootstrap command's entrypoint
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.