Created
July 21, 2018 16:17
-
-
Save MattHodge/be12f2437bd77c9730c43454b4fdcdd1 to your computer and use it in GitHub Desktop.
VSCode CloudFormation Tasks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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