builder/amazon: Allow spaces in AMI names
This commit is contained in:
parent
9da9ce6046
commit
2056fda4d3
|
@ -20,7 +20,7 @@ func isalphanumeric(b byte) bool {
|
|||
|
||||
// Clean up AMI name by replacing invalid characters with "-"
|
||||
func templateCleanAMIName(s string) string {
|
||||
allowed := []byte{'(', ')', ',', '/', '-', '_'}
|
||||
allowed := []byte{'(', ')', ',', '/', '-', '_', ' '}
|
||||
b := []byte(s)
|
||||
newb := make([]byte, len(b))
|
||||
for i, c := range b {
|
||||
|
|
|
@ -5,8 +5,8 @@ import (
|
|||
)
|
||||
|
||||
func TestAMITemplatePrepare_clean(t *testing.T) {
|
||||
origName := "AMZamz09(),/-_:&^$%"
|
||||
expected := "AMZamz09(),/-_-----"
|
||||
origName := "AMZamz09(),/-_:&^ $%"
|
||||
expected := "AMZamz09(),/-_--- --"
|
||||
|
||||
name := templateCleanAMIName(origName)
|
||||
|
||||
|
|
Loading…
Reference in New Issue