-
Notifications
You must be signed in to change notification settings - Fork 548
/
Copy pathauth_azure.go
210 lines (182 loc) · 5.85 KB
/
auth_azure.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
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package provider
import (
"context"
"fmt"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/policy"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/vault/api"
"github.com/hashicorp/terraform-provider-vault/internal/consts"
)
const defaultAzureScope = "https://management.azure.com/"
func init() {
field := consts.FieldAuthLoginAzure
if err := globalAuthLoginRegistry.Register(field,
func(r *schema.ResourceData) (AuthLogin, error) {
a := &AuthLoginAzure{}
return a.Init(r, field)
}, GetAzureLoginSchema); err != nil {
panic(err)
}
}
// GetAzureLoginSchema for the azure authentication engine.
func GetAzureLoginSchema(authField string) *schema.Schema {
return getLoginSchema(
authField,
"Login to vault using the azure method",
GetAzureLoginSchemaResource,
)
}
// GetAzureLoginSchemaResource for the azure authentication engine.
func GetAzureLoginSchemaResource(authField string) *schema.Resource {
return mustAddLoginSchema(&schema.Resource{
Schema: map[string]*schema.Schema{
consts.FieldJWT: {
Type: schema.TypeString,
Optional: true,
Description: "A signed JSON Web Token. If not specified on will be " +
"created automatically",
DefaultFunc: schema.EnvDefaultFunc(consts.EnvVarAzureAuthJWT, nil),
},
consts.FieldRole: {
Type: schema.TypeString,
Required: true,
Description: "Name of the login role.",
},
consts.FieldSubscriptionID: {
Type: schema.TypeString,
Required: true,
Description: "The subscription ID for the machine that generated the MSI token. " +
"This information can be obtained through instance metadata.",
},
consts.FieldResourceGroupName: {
Type: schema.TypeString,
Required: true,
Description: "The resource group for the machine that generated the MSI token. " +
"This information can be obtained through instance metadata.",
},
consts.FieldVMName: {
Type: schema.TypeString,
Optional: true,
Description: "The virtual machine name for the machine that generated the MSI token. " +
"This information can be obtained through instance metadata.",
},
consts.FieldVMSSName: {
Type: schema.TypeString,
Optional: true,
Description: "The virtual machine scale set name for the machine that generated " +
"the MSI token. This information can be obtained through instance metadata.",
ConflictsWith: []string{fmt.Sprintf("%s.0.%s", authField, consts.FieldVMName)},
},
consts.FieldTenantID: {
Type: schema.TypeString,
Optional: true,
Description: "Provides the tenant ID to use in a multi-tenant " +
"authentication scenario.",
ConflictsWith: []string{fmt.Sprintf("%s.0.%s", authField, consts.FieldJWT)},
},
consts.FieldClientID: {
Type: schema.TypeString,
Optional: true,
Description: "The identity's client ID.",
ConflictsWith: []string{fmt.Sprintf("%s.0.%s", authField, consts.FieldJWT)},
},
consts.FieldScope: {
Type: schema.TypeString,
Optional: true,
Default: defaultAzureScope,
Description: "The scopes to include in the token request.",
ConflictsWith: []string{fmt.Sprintf("%s.0.%s", authField, consts.FieldJWT)},
},
},
}, authField, consts.MountTypeAzure)
}
var _ AuthLogin = (*AuthLoginAzure)(nil)
type AuthLoginAzure struct {
AuthLoginCommon
}
// MountPath for the azure authentication engine.
func (l *AuthLoginAzure) MountPath() string {
if l.mount == "" {
return l.Method()
}
return l.mount
}
// LoginPath for the azure authentication engine.
func (l *AuthLoginAzure) LoginPath() string {
return fmt.Sprintf("auth/%s/login", l.MountPath())
}
func (l *AuthLoginAzure) Init(d *schema.ResourceData, authField string) (AuthLogin, error) {
if err := l.AuthLoginCommon.Init(d, authField,
func(data *schema.ResourceData) error {
err := l.checkRequiredFields(d, l.requiredParams()...)
if err != nil {
return err
}
return l.checkFieldsOneOf(d, consts.FieldVMName, consts.FieldVMSSName)
},
); err != nil {
return nil, err
}
return l, nil
}
func (l *AuthLoginAzure) requiredParams() []string {
return []string{consts.FieldRole, consts.FieldSubscriptionID, consts.FieldResourceGroupName}
}
// Method name for the azure authentication engine.
func (l *AuthLoginAzure) Method() string {
return consts.AuthMethodAzure
}
// Login using the azure authentication engine.
func (l *AuthLoginAzure) Login(client *api.Client) (*api.Secret, error) {
if err := l.validate(); err != nil {
return nil, err
}
params, err := l.copyParams(l.requiredParams()...)
if err != nil {
return nil, err
}
if v, ok := l.params[consts.FieldVMName]; ok {
params[consts.FieldVMName] = v
} else if v, ok := l.params[consts.FieldVMName]; ok {
params[consts.FieldVMSSName] = v
}
ctx := context.Background()
jwt, err := l.getJWT(ctx)
if err != nil {
return nil, err
}
params[consts.FieldJWT] = jwt
return l.login(client, l.LoginPath(), params)
}
func (l *AuthLoginAzure) getJWT(ctx context.Context) (string, error) {
if v, ok := l.params[consts.FieldJWT]; ok {
return v.(string), nil
}
// attempt to get the token from Azure
credOpts := &azidentity.ManagedIdentityCredentialOptions{}
if v, ok := l.params[consts.FieldClientID]; ok {
credOpts.ID = azidentity.ClientID(v.(string))
}
creds, err := azidentity.NewManagedIdentityCredential(credOpts)
if err != nil {
return "", err
}
var scopes []string
if v, ok := l.params[consts.FieldScope].(string); ok {
scopes = append(scopes, v)
}
tOpts := policy.TokenRequestOptions{
Scopes: scopes,
}
if v, ok := l.params[consts.FieldTenantID]; ok {
tOpts.TenantID = v.(string)
}
token, err := creds.GetToken(ctx, tOpts)
if err != nil {
return "", err
}
return token.Token, nil
}