You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deploy/aws/cloudformation/template.yaml
+48-15Lines changed: 48 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,8 @@ Metadata:
17
17
- InstanceType
18
18
- RootVolumeSize
19
19
- DataVolumeSize
20
+
- DataVolumeIops
21
+
- DataVolumeThroughput
20
22
- AmiSsmParameter
21
23
- Label:
22
24
default: Access
@@ -51,6 +53,10 @@ Metadata:
51
53
default: Root volume size
52
54
DataVolumeSize:
53
55
default: Hypeman data volume size
56
+
DataVolumeIops:
57
+
default: Hypeman data volume IOPS
58
+
DataVolumeThroughput:
59
+
default: Hypeman data volume throughput
54
60
HypemanVersion:
55
61
default: Hypeman release
56
62
HypemanBranch:
@@ -109,6 +115,16 @@ Parameters:
109
115
MinValue: 50
110
116
MaxValue: 16384
111
117
Description: Hypeman data EBS volume size in GiB. This volume is formatted as XFS and mounted at /var/lib/hypeman.
118
+
DataVolumeIops:
119
+
Type: String
120
+
Default: ""
121
+
AllowedPattern: "^$|^[0-9]+$"
122
+
Description: Optional provisioned IOPS for the Hypeman data gp3 EBS volume. Leave empty for the EC2 default.
123
+
DataVolumeThroughput:
124
+
Type: String
125
+
Default: ""
126
+
AllowedPattern: "^$|^[0-9]+$"
127
+
Description: Optional provisioned throughput in MiB/s for the Hypeman data gp3 EBS volume. When set, Hypeman disk I/O capacity is configured to the same value.
0 commit comments