We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a9efac1 + b8f9f86 commit ceeb0b7Copy full SHA for ceeb0b7
cloudconfig/cloudconfig.go
@@ -34,6 +34,7 @@ func NewDefaultCloudInitConfig() *CloudInit {
34
"curl",
35
"tar",
36
},
37
+ Users: []string{"default"},
38
SystemInfo: &SystemInfo{
39
DefaultUser: DefaultUser{
40
Name: defaults.DefaultUser,
@@ -69,6 +70,7 @@ type File struct {
69
70
type CloudInit struct {
71
mux sync.Mutex
72
73
+ Users []string `yaml:"users"`
74
PackageUpgrade bool `yaml:"package_upgrade"`
75
Packages []string `yaml:"packages,omitempty"`
76
SSHAuthorizedKeys []string `yaml:"ssh_authorized_keys,omitempty"`
0 commit comments