We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 121bdc2 commit eee1c12Copy full SHA for eee1c12
nix/common-ebs-options.nix
@@ -33,12 +33,14 @@ with lib;
33
34
volumeType = mkOption {
35
default = if config.iops == 0 then "standard" else "io1";
36
- type = types.enum [ "standard" "io1" "gp2" ];
+ type = types.enum [ "standard" "io1" "gp2" "st1" "sc1" ];
37
description = ''
38
The volume type for the EBS volume, which must be one of
39
<literal>"standard"</literal> (a magnetic volume),
40
<literal>"io1"</literal> (a provisioned IOPS SSD volume) or
41
<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).
44
'';
45
};
46
0 commit comments