installer cmd line tool
diff --git a/core/installer/config.go b/core/installer/config.go
new file mode 100644
index 0000000..27bb229
--- /dev/null
+++ b/core/installer/config.go
@@ -0,0 +1,24 @@
+package main
+
+type Config struct {
+	Values Values `json:"values"`
+}
+
+type Values struct {
+	PCloudEnvName            string `json:"pcloudEnvName,omitempty"`
+	Id                       string `json:"id,omitempty"`
+	ContactEmail             string `json:"contactEmail,omitempty"`
+	Domain                   string `json:"domain,omitempty"`
+	PublicIP                 string `json:"publicIP,omitempty"`
+	GandiAPIToken            string `json:"gandiAPIToken,omitempty"`
+	NamespacePrefix          string `json:"namespacePrefix,omitempty"`
+	LighthouseAuthUIIP       string `json:"lighthouseAuthUIIP,omitempty"`
+	LighthouseMainIP         string `json:"lighthouseMainIP,omitempty"`
+	LighthouseMainPort       string `json:"lighthouseMainPort,omitempty"`
+	MXHostname               string `json:"mxHostname,omitempty"`
+	MailGatewayAddress       string `json:"mailGatewayAddress,omitempty"`
+	MatrixOAuth2ClientSecret string `json:"matrixOAuth2ClientSecret,omitempty"`
+	MatrixStorageSize        string `json:"matrixStorageSize,omitempty"`
+	PiholeOAuth2ClientSecret string `json:"piholeOAuth2ClientSecret,omitempty"`
+	PiholeOAuth2CookieSecret string `json:"piholeOAuth2CookieSecret,omitempty"`
+}