Commit 2056fda4 authored by Clint Shryock's avatar Clint Shryock

builder/amazon: Allow spaces in AMI names

parent 9da9ce60
...@@ -20,7 +20,7 @@ func isalphanumeric(b byte) bool { ...@@ -20,7 +20,7 @@ func isalphanumeric(b byte) bool {
// Clean up AMI name by replacing invalid characters with "-" // Clean up AMI name by replacing invalid characters with "-"
func templateCleanAMIName(s string) string { func templateCleanAMIName(s string) string {
allowed := []byte{'(', ')', ',', '/', '-', '_'} allowed := []byte{'(', ')', ',', '/', '-', '_', ' '}
b := []byte(s) b := []byte(s)
newb := make([]byte, len(b)) newb := make([]byte, len(b))
for i, c := range b { for i, c := range b {
......
...@@ -5,8 +5,8 @@ import ( ...@@ -5,8 +5,8 @@ import (
) )
func TestAMITemplatePrepare_clean(t *testing.T) { func TestAMITemplatePrepare_clean(t *testing.T) {
origName := "AMZamz09(),/-_:&^$%" origName := "AMZamz09(),/-_:&^ $%"
expected := "AMZamz09(),/-_-----" expected := "AMZamz09(),/-_--- --"
name := templateCleanAMIName(origName) name := templateCleanAMIName(origName)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment