Skip to content

Commit

Permalink
fix(core): Explain characters are invalid in hostname (#8024)
Browse files Browse the repository at this point in the history
  • Loading branch information
alanmquach committed Mar 10, 2020
1 parent 6ea3986 commit 479844d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ class AmazonApplicationNameValidator implements IApplicationNameValidator {
if (name.includes('.') || name.includes('_')) {
warnings.push(`If the application's name contains an underscore(_) or dot(.),
you will not be able to create a load balancer,
preventing it from being used as a front end service.`);
preventing it from being used as a front end service.
Any hostname constructed with this application name may have issues.`);
}
}

Expand Down

0 comments on commit 479844d

Please sign in to comment.