-
Notifications
You must be signed in to change notification settings - Fork 48
/
azure_cli_authorizer.go
268 lines (219 loc) · 8.88 KB
/
azure_cli_authorizer.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
// Copyright (c) HashiCorp Inc. All rights reserved.
// Licensed under the MPL-2.0 License. See NOTICE.txt in the project root for license information.
package auth
import (
"context"
"fmt"
"net/http"
"os"
"strings"
"time"
"github.com/hashicorp/go-azure-sdk/sdk/environments"
"github.com/hashicorp/go-azure-sdk/sdk/internal/azurecli"
"golang.org/x/oauth2"
)
type AzureCliAuthorizerOptions struct {
// Api describes the Azure API being used
Api environments.Api
// TenantId is the tenant to authenticate against
TenantId string
// AuxTenantIds lists additional tenants to authenticate against, currently only
// used for Resource Manager when auxiliary tenants are needed.
// e.g. https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/authenticate-multi-tenant
AuxTenantIds []string
// SubscriptionIdHint is the subscription to target when selecting an account with which to obtain an access token
// Used to hint to Azure CLI which of its signed-in accounts it should select, based on apparent access to the subscription.
SubscriptionIdHint string
}
// NewAzureCliAuthorizer returns an Authorizer which authenticates using the Azure CLI.
func NewAzureCliAuthorizer(ctx context.Context, options AzureCliAuthorizerOptions) (Authorizer, error) {
conf, err := newAzureCliConfig(options.Api, options.TenantId, options.AuxTenantIds, options.SubscriptionIdHint)
if err != nil {
return nil, err
}
return conf.TokenSource(ctx)
}
var _ Authorizer = &AzureCliAuthorizer{}
// AzureCliAuthorizer is an Authorizer which supports the Azure CLI.
type AzureCliAuthorizer struct {
// TenantID is the specified tenant ID, or the auto-detected tenant ID if none was specified
TenantID string
// DefaultSubscriptionID is the default subscription, when detected
DefaultSubscriptionID string
// SubscriptionIDHint is a user-provided subscription ID used to hint to Azure CLI which account to select
SubscriptionIDHint string
conf *azureCliConfig
}
// Token returns an access token using the Azure CLI as an authentication mechanism.
func (a *AzureCliAuthorizer) Token(_ context.Context, _ *http.Request) (*oauth2.Token, error) {
if a.conf == nil {
return nil, fmt.Errorf("could not request token: conf is nil")
}
azArgs := []string{"account", "get-access-token"}
scope, err := environments.Scope(a.conf.Api)
if err != nil {
return nil, fmt.Errorf("determining scope for %q: %+v", a.conf.Api.Name(), err)
}
azArgs = append(azArgs, "--scope", *scope)
accountType, err := azurecli.GetAccountType()
if err != nil {
return nil, fmt.Errorf("determining account type: %+v", err)
}
accountName, err := azurecli.GetAccountName()
if err != nil {
return nil, fmt.Errorf("determining account name: %+v", err)
}
tenantIdRequired := true
// Try to detect if we're running in Cloud Shell
if cloudShell := os.Getenv("AZUREPS_HOST_ENVIRONMENT"); strings.HasPrefix(cloudShell, "cloud-shell/") {
tenantIdRequired = false
}
// Try to detect whether authenticated principal is a managed identity
if accountType != nil && accountName != nil && *accountType == "servicePrincipal" && (*accountName == "systemAssignedIdentity" || *accountName == "userAssignedIdentity") {
tenantIdRequired = false
}
// Prefer to specify subscription ID if provided, this hints to Azure CLI which account to use in the event
// that multiple accounts are signed in, and each account has access to a subset of all subscriptions.
if a.SubscriptionIDHint != "" {
azArgs = append(azArgs, "--subscription", a.conf.SubscriptionIDHint)
// Cannot specify both `--subscription` and `--tenant`
tenantIdRequired = false
}
if tenantIdRequired {
azArgs = append(azArgs, "--tenant", a.conf.TenantID)
}
var token azureCliToken
if err = azurecli.JSONUnmarshalAzCmd(false, &token, azArgs...); err != nil {
return nil, err
}
var expiry time.Time
if token.ExpiresOn != "" {
if expiry, err = time.ParseInLocation("2006-01-02 15:04:05.999999", token.ExpiresOn, time.Local); err != nil {
return nil, fmt.Errorf("internal-error: parsing expiresOn value for az-cli token")
}
}
return &oauth2.Token{
AccessToken: token.AccessToken,
Expiry: expiry,
TokenType: token.TokenType,
}, nil
}
// AuxiliaryTokens returns additional tokens for auxiliary tenant IDs, for use in multi-tenant scenarios
func (a *AzureCliAuthorizer) AuxiliaryTokens(_ context.Context, _ *http.Request) ([]*oauth2.Token, error) {
if a.conf == nil {
return nil, fmt.Errorf("could not request token: conf is nil")
}
// Return early if no auxiliary tenants are configured
if len(a.conf.AuxiliaryTenantIDs) == 0 {
return []*oauth2.Token{}, nil
}
// Try to detect if we're running in Cloud Shell
if cloudShell := os.Getenv("AZUREPS_HOST_ENVIRONMENT"); strings.HasPrefix(cloudShell, "cloud-shell/") {
return nil, fmt.Errorf("auxiliary tokens not supported in Cloud Shell")
}
azArgs := []string{"account", "get-access-token"}
scope, err := environments.Scope(a.conf.Api)
if err != nil {
return nil, fmt.Errorf("determining scope for %q: %+v", a.conf.Api.Name(), err)
}
azArgs = append(azArgs, "--scope", *scope)
tokens := make([]*oauth2.Token, 0)
for _, tenantId := range a.conf.AuxiliaryTenantIDs {
argsWithTenant := append(azArgs, "--tenant", tenantId)
var token azureCliToken
if err = azurecli.JSONUnmarshalAzCmd(false, &token, argsWithTenant...); err != nil {
return nil, err
}
tokens = append(tokens, &oauth2.Token{
AccessToken: token.AccessToken,
TokenType: token.TokenType,
})
}
return tokens, nil
}
// azureCliConfig configures an AzureCliAuthorizer.
type azureCliConfig struct {
Api environments.Api
// TenantID is the required tenant ID for the primary token
TenantID string
// AuxiliaryTenantIDs is an optional list of tenant IDs for which to obtain additional tokens
AuxiliaryTenantIDs []string
// DefaultSubscriptionID is the optional default subscription ID
DefaultSubscriptionID string
// SubscriptionIDHint is the subscription being targeted when obtaining a token, used to hint to Azure CLI which account to use
SubscriptionIDHint string
}
// newAzureCliConfig validates the supplied tenant ID and returns a new azureCliConfig.
func newAzureCliConfig(api environments.Api, tenantId string, auxiliaryTenantIds []string, subscriptionIdHint string) (*azureCliConfig, error) {
// check az-cli version, ensure that MSAL is supported
if err := azurecli.CheckAzVersion(); err != nil {
return nil, err
}
// obtain default tenant ID if no tenant ID was provided
if strings.TrimSpace(tenantId) == "" {
if defaultTenantId, err := azurecli.GetDefaultTenantID(); err != nil {
return nil, fmt.Errorf("tenant ID was not specified and the default tenant ID could not be determined: %v", err)
} else if defaultTenantId == nil {
return nil, fmt.Errorf("tenant ID was not specified and the default tenant ID could not be determined")
} else {
tenantId = *defaultTenantId
}
}
// validate tenant ID
if valid, err := azurecli.ValidateTenantID(tenantId); err != nil {
return nil, err
} else if !valid {
return nil, fmt.Errorf("invalid tenant ID was provided")
}
// get the default subscription ID
var subscriptionId string
if defaultSubscriptionId, err := azurecli.GetDefaultSubscriptionID(); err != nil {
return nil, err
} else if defaultSubscriptionId != nil {
subscriptionId = *defaultSubscriptionId
}
// validate subscriptionIdHint, if applicable (currently only for Resource Manager)
if environments.ApiIsKnownPublished(api, "AzureResourceManager") {
if subscriptionIdHint != "" {
if availableSubscriptionIds, err := azurecli.ListAvailableSubscriptionIDs(); err != nil {
return nil, err
} else if availableSubscriptionIds == nil {
return nil, fmt.Errorf("no available subscription IDs returned by Azure CLI")
} else {
found := false
for _, subId := range *availableSubscriptionIds {
if strings.EqualFold(subId, subscriptionIdHint) {
found = true
break
}
}
if !found {
return nil, fmt.Errorf("the provided subscription ID %q is not known by Azure CLI", subscriptionIdHint)
}
}
}
}
return &azureCliConfig{
Api: api,
TenantID: tenantId,
AuxiliaryTenantIDs: auxiliaryTenantIds,
DefaultSubscriptionID: subscriptionId,
SubscriptionIDHint: strings.ToLower(subscriptionIdHint),
}, nil
}
// TokenSource provides a source for obtaining access tokens using AzureCliAuthorizer.
func (c *azureCliConfig) TokenSource(ctx context.Context) (Authorizer, error) {
// Cache access tokens internally to avoid unnecessary `az` invocations
return NewCachedAuthorizer(&AzureCliAuthorizer{
TenantID: c.TenantID,
DefaultSubscriptionID: c.DefaultSubscriptionID,
SubscriptionIDHint: c.SubscriptionIDHint,
conf: c,
})
}
type azureCliToken struct {
AccessToken string `json:"accessToken"`
ExpiresOn string `json:"expiresOn"`
Tenant string `json:"tenant"`
TokenType string `json:"tokenType"`
}