Re-added tests for FillParamters
This commit is contained in:
parent
094a8840d8
commit
c72a612b44
|
@ -280,14 +280,6 @@ func (c *Config) FillParameters() error {
|
|||
c.SubscriptionID = subscriptionID
|
||||
}
|
||||
|
||||
if c.TenantID == "" {
|
||||
tenantID, err := common.FindTenantID(*c.CloudEnvironment, c.SubscriptionID)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
c.TenantID = tenantID
|
||||
}
|
||||
|
||||
if c.CloudEnvironment == nil {
|
||||
err := c.setCloudEnvironment()
|
||||
if err != nil {
|
||||
|
@ -295,6 +287,14 @@ func (c *Config) FillParameters() error {
|
|||
}
|
||||
}
|
||||
|
||||
if c.TenantID == "" {
|
||||
tenantID, err := findTenantID(*c.CloudEnvironment, c.SubscriptionID)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
c.TenantID = tenantID
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue