Skip to content

Commit

Permalink
Security Groups: document how to allow all traffic
Browse files Browse the repository at this point in the history
  • Loading branch information
domenkozar committed Jun 1, 2017
1 parent 8f4a67c commit 2ca5a39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nix/ec2-security-group.nix
Expand Up @@ -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;
};
Expand Down

2 comments on commit 2ca5a39

@AmineChikhaoui
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@domenkozar there is a missing " at the end.

@domenkozar
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry! Fixed in ef2553b

Please sign in to comment.