You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/vendor/github.com/jen20/riviera/azure/credentials.go

18 lines
410 B

package azure
const (
defaultResourceManagerEndpoint = "https://management.azure.com"
defaultActiveDirectoryEndpoint = "https://login.microsoftonline.com"
)
type AzureResourceManagerCredentials struct {
ClientID string
ClientSecret string
TenantID string
SubscriptionID string
// can be overridden for non public clouds
ResourceManagerEndpoint string
ActiveDirectoryEndpoint string
}