From 504f4943a0d768af53dabf0f0a0c4d45ef08ea0b Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 24 Oct 2011 19:27:58 +0000 Subject: [PATCH] * Add a securityGroup attribute for EC2 deployment. svn path=/nixos/trunk/; revision=30001 --- modules/misc/deployment.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/misc/deployment.nix b/modules/misc/deployment.nix index 068a9feadce..fa78de49d39 100644 --- a/modules/misc/deployment.nix +++ b/modules/misc/deployment.nix @@ -83,6 +83,14 @@ with pkgs.lib; ''; }; + deployment.ec2.securityGroup = mkOption { + default = ""; + example = "my-group"; + description = '' + Security group for the instance. + ''; + }; + # Ad hoc cloud options. deployment.adhoc.controller = mkOption {