Repository to collect official, verified and runnable templates for the awless CLI
Here are some non exhaustive Examples of what you can do with templates. You can also read more about awless templates
On each change all templates are verified & compiled against the latest version of awless
.
You can run the verification locally with:
go get github.com/wallix/awless # if needed
go test verifyall_test.go -v
{{range $index, $example := .}}
- [{{$example.Title}}](#{{ MarkdownTitleLink $example.Title }}){{end}}
{{range $index, $example := .}}
{{if $example.Description }} {{ $example.Description }} {{ end }}
{{if $example.Tags }} tags: {{ Join $example.Tags ", " }} {{ end }}
{{$example.Documentation}}
Run it locally with: awless run repo:{{$example.Name}} -v
{{if $example.CLIExample }} Full CLI example:
{{ $example.CLIExample }}
{{ end }}
{{end}}