Update Regex to allow /19 to match in AWS and other consistency changes
This commit is contained in:
parent
1f416e38bf
commit
c3bf86574d
1 changed files with 3 additions and 3 deletions
6
dist/js/main.js
vendored
6
dist/js/main.js
vendored
|
@ -31,9 +31,9 @@ let urlVersion = '1'
|
|||
let configVersion = '1'
|
||||
|
||||
const netsizePatterns = {
|
||||
Standard: '^([0-9]|[12][0-9]|3[0-2])$',
|
||||
AZURE: '^([0-9]|[12][0-9])$',
|
||||
AWS: '^([0-9]|[12][0-8])$',
|
||||
Standard: '^([12]?[0-9]|3[0-2])$',
|
||||
AZURE: '^([12]?[0-9])$',
|
||||
AWS: '^(1?[0-9]|2[0-8])$',
|
||||
};
|
||||
|
||||
const minSubnetSizes = {
|
||||
|
|
Loading…
Reference in a new issue