hotfix(settings): allow public IP outbound subnets but not the unspecified address

This commit is contained in:
Quentin McGaw
2024-02-03 20:02:43 +00:00
parent 6b9c775055
commit b5f1055682
3 changed files with 3 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ var (
ErrCountryNotValid = errors.New("the country specified is not valid")
ErrFilepathMissing = errors.New("filepath is missing")
ErrFirewallZeroPort = errors.New("cannot have a zero port")
ErrFirewallPublicOutboundSubnet = errors.New("outbound subnet is public")
ErrFirewallPublicOutboundSubnet = errors.New("outbound subnet has an unspecified address")
ErrHostnameNotValid = errors.New("the hostname specified is not valid")
ErrISPNotValid = errors.New("the ISP specified is not valid")
ErrMinRatioNotValid = errors.New("minimum ratio is not valid")