* securityGroup -> securityGroups.

svn path=/nixos/trunk/; revision=30014
This commit is contained in:
Eelco Dolstra 2011-10-25 15:27:29 +00:00
parent e4a6ea0632
commit a9cfde0df1
1 changed files with 7 additions and 4 deletions

View File

@ -95,6 +95,7 @@ let cfg = config.deployment; in
deployment.ec2.keyPair = mkOption {
example = "my-keypair";
type = types.uniq types.string;
description = ''
Name of the SSH key pair to be used to communicate securely
with the instance. Key pairs can be created using the
@ -102,11 +103,13 @@ let cfg = config.deployment; in
'';
};
deployment.ec2.securityGroup = mkOption {
default = "";
example = "my-group";
deployment.ec2.securityGroups = mkOption {
default = [ "default" ];
example = [ "my-group" "my-other-group" ];
type = types.list types.string;
description = ''
Security group for the instance.
Security groups for the instance. These determine the
firewall rules applied to the instance.
'';
};