Skip to content
Merged
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
41 changes: 21 additions & 20 deletions pkg/objects/objects.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,27 @@ import "time"

// objects stores information to contact with the pf9 controller.
type Config struct {
Fqdn string `json:"fqdn"`
Username string `json:"username"`
Password string `json:"password"`
Tenant string `json:"tenant"`
Region string `json:"region"`
WaitPeriod time.Duration `json:"wait_period"`
AllowInsecure bool `json:"allow_insecure"`
ProxyURL string `json:"proxy_url"`
MfaToken string `json:"mfa_token"`
AwsIamUsername string `json:"aws_iam_username"`
AwsAccessKey string `json:"aws_access_key"`
AwsSecretKey string `json:"aws_secret_key"`
AwsRegion string `json:"aws_region"`
AzureTenant string `json:"azure_tenant"`
AzureClient string `json:"azure_application"`
AzureSubscription string `json:"azure_subscription"`
AzureSecret string `json:"azure_secret"`
GooglePath string `json:"google_path"`
GoogleProjectName string `json:"google_project_name"`
GoogleServiceEmail string `json:"google_service_email"`
Fqdn string `json:"fqdn"`
Username string `json:"username"`
Password string `json:"password"`
Tenant string `json:"tenant"`
Region string `json:"region"`
WaitPeriod time.Duration `json:"wait_period"`
AllowInsecure bool `json:"allow_insecure"`
ProxyURL string `json:"proxy_url"`
MfaToken string `json:"mfa_token"`
AwsIamUsername string `json:"aws_iam_username"`
AwsAccessKey string `json:"aws_access_key"`
AwsSecretKey string `json:"aws_secret_key"`
AwsRegion string `json:"aws_region"`
AzureTenant string `json:"azure_tenant"`
AzureClient string `json:"azure_application"`
AzureSubscription string `json:"azure_subscription"`
AzureSecret string `json:"azure_secret"`
GooglePath string `json:"google_path"`
GoogleProjectName string `json:"google_project_name"`
GoogleServiceEmail string `json:"google_service_email"`
PrivatePackageRepository string `json:"private_package_repository"`
}

type NodeConfig struct {
Expand Down
Loading