-
Notifications
You must be signed in to change notification settings - Fork 34
/
redshift-cluster.sublime-snippet
37 lines (37 loc) · 1.21 KB
/
redshift-cluster.sublime-snippet
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
31
32
33
34
35
36
37
<snippet>
<content><![CDATA[
"${1:redshiftCluster}": {
"Type": "AWS::Redshift::Cluster",
"Properties": {
"AllowVersionUpgrade": "${2:true | false}",
"AutomatedSnapshotRetentionPeriod": "${3}",
"AvailabilityZone": "${4}",
"ClusterParameterGroupName": "${5}",
"ClusterSecurityGroups": [ "${6}" ],
"ClusterSubnetGroupName": "${7}",
"ClusterType": "${8}",
"ClusterVersion": "${9}",
"DBName": "${10}",
"ElasticIp": "${11}",
"Encrypted": "${12:true | false}",
"HsmClientCertificateIdentifier": "${13}",
"HsmConfigurationIdentifier": "${14}",
"MasterUsername": "${15}",
"MasterUserPassword": "${16}",
"NodeType": "${17}",
"NumberOfNodes": "${18}",
"OwnerAccount": "${19}",
"Port": "${20}",
"PreferredMaintenanceWindow": "${21}",
"PubliclyAccessible": "${22:true | false}",
"SnapshotClusterIdentifier": "${23}",
"SnapshotIdentifier": "${24}",
"VpcSecurityGroupIds": [ "${25}" ]
}
}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>redshift-cluster</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.cloudformation</scope>
</snippet>