From 2ca5a390cb71f8593a3909994e036c18896c6ace Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Thu, 1 Jun 2017 16:38:30 +0200 Subject: [PATCH] Security Groups: document how to allow all traffic --- nix/ec2-security-group.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/ec2-security-group.nix b/nix/ec2-security-group.nix index 630cd75bd..3fa98cf0e 100644 --- a/nix/ec2-security-group.nix +++ b/nix/ec2-security-group.nix @@ -48,7 +48,7 @@ with lib; options = { protocol = mkOption { default = "tcp"; - description = "The protocol (tcp, udp, or icmp) that this rule describes."; + description = "The protocol (tcp, udp, or icmp) that this rule describes. Use \"-1\" to specify All.; type = types.str; };