Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 1.38 KB

README_TEMPLATE.md

File metadata and controls

49 lines (31 loc) · 1.38 KB

Build Status

Twitter | Wiki | Changelog

awless templates

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

Continuous Integration

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

Examples

{{range $index, $example := .}}

  • [{{$example.Title}}](#{{ MarkdownTitleLink $example.Title }}){{end}}

{{range $index, $example := .}}

{{$example.Title}}

{{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}}