forked from aws-cloudformation/cfn-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproperties_ebs.yaml
More file actions
59 lines (59 loc) · 1.42 KB
/
properties_ebs.yaml
File metadata and controls
59 lines (59 loc) · 1.42 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
AWSTemplateFormatVersion: "2010-09-09"
Description: A sample template
Resources:
## Missing Properties
MyEC2Instance:
Type: "AWS::EC2::Instance"
Properties:
ImageId: "ami-2f726546"
InstanceType: t1.micro
KeyName: 1
BlockDeviceMappings:
-
DeviceName: /dev/sdm
Ebs:
VolumeType: io1
Iops: 0
DeleteOnTermination: false
VolumeSize: 20
-
DeviceName: /dev/sdn
Ebs:
VolumeType: magnetic
Iops: 100
DeleteOnTermination: false
VolumeSize: 20
NetworkInterfaces:
- DeviceIndex: "1"
MyEC2Instance3:
Type: "AWS::EC2::Instance"
Properties:
ImageId: "ami-2f726546"
BlockDeviceMappings:
-
DeviceName: /dev/sdm
VirtualName: ephemeralA
-
DeviceName: /dev/sdn
VirtualName: ephemeral0
MyLaunchConfig:
Type: AWS::AutoScaling::LaunchConfiguration
Properties:
ImageId: "ami-2f726546"
InstanceType: t2.micro
BlockDeviceMappings:
-
DeviceName: /dev/sdm
Ebs:
VolumeType: io1
Iops: 10
DeleteOnTermination: false
VolumeSize: 20
-
DeviceName: /dev/sdn
Ebs:
VolumeType: standard
Iops: 100
DeleteOnTermination: false
VolumeSize: 20