Skip to content

Instantly share code, notes, and snippets.

@jorotenev
Created February 20, 2019 12:57
Show Gist options
  • Save jorotenev/de6c2e99dca42eeb5475cdb44e94fd39 to your computer and use it in GitHub Desktop.
Save jorotenev/de6c2e99dca42eeb5475cdb44e94fd39 to your computer and use it in GitHub Desktop.
VS Code Task for AWS CloudFormation validate-template
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "validate-template",
"type": "shell",
"windows": {
"command": "aws"
},
"args": [
"cloudformation",
"validate-template",
"--template-body=file://${file}"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment