Skip to content

Commit eee1c12

Browse files
committed
Add support for additional EBS volume types
1 parent 121bdc2 commit eee1c12

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

nix/common-ebs-options.nix

+3-1
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,14 @@ with lib;
3333

3434
volumeType = mkOption {
3535
default = if config.iops == 0 then "standard" else "io1";
36-
type = types.enum [ "standard" "io1" "gp2" ];
36+
type = types.enum [ "standard" "io1" "gp2" "st1" "sc1" ];
3737
description = ''
3838
The volume type for the EBS volume, which must be one of
3939
<literal>"standard"</literal> (a magnetic volume),
4040
<literal>"io1"</literal> (a provisioned IOPS SSD volume) or
4141
<literal>"gp2"</literal> (a general purpose SSD volume).
42+
<literal>"st1"</literal> (a throughput optimized HDD volume).
43+
<literal>"sc1"</literal> (a cold HDD volume).
4244
'';
4345
};
4446

0 commit comments

Comments
 (0)