Skip to content

Commit e23d68c

Browse files
author
AWS Scripting Guy
committed
ec2 complete snippets
1 parent fa5ce7c commit e23d68c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

snippets/yaml-snippets.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,26 @@
8888
"description": "",
8989
"scope": "source.cloudformation"
9090
},
91+
"ec2-volume": {
92+
"prefix": "ec2-volume",
93+
"body": [
94+
"${1:ec2Volume}:",
95+
" Type: AWS::EC2::Volume",
96+
" Properties:",
97+
" AutoEnableIO: ${2:true|false}",
98+
" AvailabilityZone: ${3}",
99+
" Encrypted: ${4:true|false}",
100+
" KmsKeyId: ${5}",
101+
" Size: ${6:0}",
102+
" SnapshotId: ${7:snap-}",
103+
" VolumeType: ${8:standard|io1|gp2}",
104+
" Tags:",
105+
" - Key: ${9:key}",
106+
" Value: ${10:value}"
107+
],
108+
"description": "",
109+
"scope": "source.cloudformation"
110+
},
91111
"elastic-load-balancer-vpc-internal": {
92112
"prefix": "elastic-load-balancer-vpc-internal",
93113
"body": [

0 commit comments

Comments
 (0)