-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathopsworks-stack.sublime-snippet
More file actions
30 lines (30 loc) · 970 Bytes
/
opsworks-stack.sublime-snippet
File metadata and controls
30 lines (30 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<snippet>
<content><![CDATA[
"${1:opsworksStack}": {
"Type": "AWS::OpsWorks::Stack",
"Properties": {
"DefaultInstanceProfileArn": "${2}",
"Name": "${3}",
"ServiceRoleArn": "${4}",
"Attributes": { "${5}":"${6}" },
"ChefConfiguration": { ${7} },
"ConfigurationManager": { ${8} },
"CustomCookbooksSource": { ${9} },
"CustomJson": { ${10} },
"DefaultAvailabilityZone": "${11}",
"DefaultOs": "${12}",
"DefaultRootDeviceType": "${13}",
"DefaultSshKeyName": "${14}",
"DefaultSubnetId": "${15}",
"HostnameTheme": "${16}",
"UseCustomCookbooks": "${17:true | false}",
"UseOpsworksSecurityGroups": "${18:true | false}",
"VpcId": "${19}"
}
}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>opsworks-stack</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.cloudformation</scope>
</snippet>