Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions shared/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ type ClientOptions struct {

// Credentials are the credentials that will be used for authentication
type Credentials struct {
Username string `yaml:"username"`
Password string `yaml:"password"`
Username string `yaml:"username,omitempty"`
Password string `yaml:"password,omitempty"`
Token string `yaml:"token"`
}

Expand Down
2 changes: 1 addition & 1 deletion shared/fileconfiguration/fileconfiguration.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ type Endpoint struct {
// Products that do not have a location and will override the endpoint that is used globally:
// cloud, objectstoragemanagement, kafka, dns, mongo, psql, dataplatform, creg, autoscaling, apigateway
// Products that have location-based endpoints: logging, monitoring, containerregistry, vpn, inmemorydb, nfs, objectstorage, mariadb
Location string `yaml:"location"`
Location string `yaml:"location,omitempty"`
Name string `yaml:"name"`
SkipTLSVerify bool `yaml:"skipTlsVerify"`
CertificateAuthData string `yaml:"certificateAuthData,omitempty"`
Expand Down
Loading