From 32c161fdc121af03f86e35d8a2fa39da5c63f768 Mon Sep 17 00:00:00 2001 From: jichenjc Date: Mon, 13 Jul 2020 07:29:37 +0000 Subject: [PATCH] nit: Add default egress rule description --- pkg/cloud/services/networking/securitygroups.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/cloud/services/networking/securitygroups.go b/pkg/cloud/services/networking/securitygroups.go index f0f9aa7b40..56941f8631 100644 --- a/pkg/cloud/services/networking/securitygroups.go +++ b/pkg/cloud/services/networking/securitygroups.go @@ -34,6 +34,7 @@ const ( var defaultRules = []infrav1.SecurityGroupRule{ { Direction: "egress", + Description: "Full open", EtherType: "IPv4", PortRangeMin: 0, PortRangeMax: 0, @@ -42,6 +43,7 @@ var defaultRules = []infrav1.SecurityGroupRule{ }, { Direction: "egress", + Description: "Full open", EtherType: "IPv6", PortRangeMin: 0, PortRangeMax: 0,