Skip to content

Instantly share code, notes, and snippets.

@MattHodge
Created July 21, 2018 16:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MattHodge/be12f2437bd77c9730c43454b4fdcdd1 to your computer and use it in GitHub Desktop.
Save MattHodge/be12f2437bd77c9730c43454b4fdcdd1 to your computer and use it in GitHub Desktop.
VSCode CloudFormation Tasks
{
"version": "2.0.0",
"tasks": [
{
"label": "CF Type Search",
"type": "shell",
"command": "open -a \"Google Chrome\" \"https://docs.aws.amazon.com/search/doc-search.html?searchPath=documentation-guide&searchQuery=%22${selectedText}%22&x=0&y=0&this_doc_product=AWS+CloudFormation&this_doc_guide=User+Guide&doc_locale=en_us#facet_doc_product=AWS%20CloudFormation&facet_doc_guide=User%20Guide\"",
"problemMatcher": [],
"presentation": {
"reveal": "never"
}
},
{
"label": "CF Resource List",
"type": "shell",
"command": "open -a \"Google Chrome\" \"https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html\"",
"problemMatcher": [],
"presentation": {
"reveal": "never"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment