core/zero: add organization id and cluster id to bootstrap config (#5275)

This commit is contained in:
Caleb Doxsey 2024-09-10 11:31:45 -06:00 committed by GitHub
parent db52d0cfbd
commit 790c11b368
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 25 additions and 9 deletions

View file

@ -18,8 +18,11 @@ const (
// BootstrapConfig defines model for BootstrapConfig.
type BootstrapConfig struct {
ClusterId string `json:"clusterId"`
// DatabrokerStorageConnection databroker storage connection string
DatabrokerStorageConnection *string `json:"databrokerStorageConnection,omitempty"`
OrganizationId string `json:"organizationId"`
// SharedSecret shared secret
SharedSecret []byte `json:"sharedSecret"`