| giolekva | 8aa73e8 | 2022-07-09 11:34:39 +0400 | [diff] [blame] | 1 | package installer |
| giolekva | 050609f | 2021-12-29 15:51:40 +0400 | [diff] [blame] | 2 | |
| 3 | type Config struct { |
| 4 | Values Values `json:"values"` |
| 5 | } |
| 6 | |
| 7 | type Values struct { |
| Giorgi Lekveishvili | 0ccd148 | 2023-06-21 15:02:24 +0400 | [diff] [blame] | 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 | PrivateDomain string `json:"privateDomain,omitempty"` |
| 13 | PublicIP string `json:"publicIP,omitempty"` |
| 14 | NamespacePrefix string `json:"namespacePrefix,omitempty"` |
| 15 | // GandiAPIToken string `json:"gandiAPIToken,omitempty"` |
| 16 | // LighthouseAuthUIIP string `json:"lighthouseAuthUIIP,omitempty"` |
| 17 | // LighthouseMainIP string `json:"lighthouseMainIP,omitempty"` |
| 18 | // LighthouseMainPort string `json:"lighthouseMainPort,omitempty"` |
| 19 | // MXHostname string `json:"mxHostname,omitempty"` |
| 20 | // MailGatewayAddress string `json:"mailGatewayAddress,omitempty"` |
| 21 | // MatrixOAuth2ClientSecret string `json:"matrixOAuth2ClientSecret,omitempty"` |
| 22 | // MatrixStorageSize string `json:"matrixStorageSize,omitempty"` |
| 23 | // PiholeOAuth2ClientSecret string `json:"piholeOAuth2ClientSecret,omitempty"` |
| 24 | // PiholeOAuth2CookieSecret string `json:"piholeOAuth2CookieSecret,omitempty"` |
| giolekva | 050609f | 2021-12-29 15:51:40 +0400 | [diff] [blame] | 25 | } |