2016-02-03 19:00:55 +01:00
|
|
|
package azure
|
|
|
|
|
2017-01-04 13:00:14 +01:00
|
|
|
const (
|
|
|
|
defaultResourceManagerEndpoint = "https://management.azure.com"
|
|
|
|
defaultActiveDirectoryEndpoint = "https://login.microsoftonline.com"
|
|
|
|
)
|
|
|
|
|
2016-02-03 19:00:55 +01:00
|
|
|
type AzureResourceManagerCredentials struct {
|
|
|
|
ClientID string
|
|
|
|
ClientSecret string
|
|
|
|
TenantID string
|
|
|
|
SubscriptionID string
|
2017-01-04 13:00:14 +01:00
|
|
|
|
|
|
|
// can be overridden for non public clouds
|
|
|
|
ResourceManagerEndpoint string
|
|
|
|
ActiveDirectoryEndpoint string
|
2016-02-03 19:00:55 +01:00
|
|
|
}
|