Skip to content

Commit

Permalink
Update Regex to allow /19 to match in AWS and other consistency changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Caesar Kabalan committed Jun 26, 2024
1 parent 0551b45 commit 7eb8031
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dist/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit 7eb8031

Please sign in to comment.