diff --git a/config/validate/validate.go b/config/validate/validate.go index 150eba4..44b7d82 100644 --- a/config/validate/validate.go +++ b/config/validate/validate.go @@ -44,7 +44,7 @@ func Validate(userdataBytes []byte) (Report, error) { return validateCloudConfig(userdataBytes, Rules) default: return Report{entries: []Entry{ - Entry{kind: entryError, message: `must be "#cloud-config" or begin with "#!"`}, + Entry{kind: entryError, message: `must be "#cloud-config" or begin with "#!"`, line: 1}, }}, nil } }