blob: 27bb229e24811bec5752cb6117392f8e0ec5854d [file] [log] [blame]
giolekva050609f2021-12-29 15:51:40 +04001package main
2
3type Config struct {
4 Values Values `json:"values"`
5}
6
7type Values struct {
8 PCloudEnvName string `json:"pcloudEnvName,omitempty"`
9 Id string `json:"id,omitempty"`
10 ContactEmail string `json:"contactEmail,omitempty"`
11 Domain string `json:"domain,omitempty"`
12 PublicIP string `json:"publicIP,omitempty"`
13 GandiAPIToken string `json:"gandiAPIToken,omitempty"`
14 NamespacePrefix string `json:"namespacePrefix,omitempty"`
15 LighthouseAuthUIIP string `json:"lighthouseAuthUIIP,omitempty"`
16 LighthouseMainIP string `json:"lighthouseMainIP,omitempty"`
17 LighthouseMainPort string `json:"lighthouseMainPort,omitempty"`
18 MXHostname string `json:"mxHostname,omitempty"`
19 MailGatewayAddress string `json:"mailGatewayAddress,omitempty"`
20 MatrixOAuth2ClientSecret string `json:"matrixOAuth2ClientSecret,omitempty"`
21 MatrixStorageSize string `json:"matrixStorageSize,omitempty"`
22 PiholeOAuth2ClientSecret string `json:"piholeOAuth2ClientSecret,omitempty"`
23 PiholeOAuth2CookieSecret string `json:"piholeOAuth2CookieSecret,omitempty"`
24}