-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathresource_auth_method_universal_identity.go
More file actions
438 lines (397 loc) · 13.8 KB
/
Copy pathresource_auth_method_universal_identity.go
File metadata and controls
438 lines (397 loc) · 13.8 KB
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
package akeyless
import (
"context"
"strconv"
"strings"
akeyless_api "github.com/akeylesslabs/akeyless-go/v5"
"github.com/akeylesslabs/terraform-provider-akeyless/akeyless/common"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)
func resourceAuthMethodUniversalIdentity() *schema.Resource {
return &schema.Resource{
Description: "Akeyless Universal Identity Auth Method Resource",
Create: resourceAuthMethodUniversalIdentityCreate,
Read: resourceAuthMethodUniversalIdentityRead,
Update: resourceAuthMethodUniversalIdentityUpdate,
Delete: resourceAuthMethodUniversalIdentityDelete,
Importer: &schema.ResourceImporter{
State: resourceAuthMethodUniversalIdentityImport,
},
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
Description: "Auth Method name",
ForceNew: true,
DiffSuppressFunc: common.DiffSuppressOnLeadingSlash,
},
"access_expires": {
Type: schema.TypeInt,
Optional: true,
Description: "Access expiration date in Unix timestamp (select 0 for access without expiry date)",
Default: 0,
},
"allowed_client_type": {
Type: schema.TypeSet,
Optional: true,
Description: "limit the auth method usage for specific client types [cli,ui,gateway-admin,sdk,mobile,extension]",
Elem: &schema.Schema{Type: schema.TypeString},
},
"bound_ips": {
Type: schema.TypeSet,
Optional: true,
Description: "A CIDR whitelist with the IPs that the access is restricted to",
Elem: &schema.Schema{Type: schema.TypeString},
},
"description": {
Type: schema.TypeString,
Optional: true,
Description: "Auth Method description",
},
"expiration_event_in": {
Type: schema.TypeSet,
Optional: true,
Description: "How many days before the expiration of the auth method would you like to be notified.",
Elem: &schema.Schema{Type: schema.TypeString},
},
"force_sub_claims": {
Type: schema.TypeBool,
Optional: true,
Description: "if true: enforce role-association must include sub claims",
},
"gw_bound_ips": {
Type: schema.TypeSet,
Optional: true,
Description: "A CIDR whitelist with the GW IPs that the access is restricted to",
Elem: &schema.Schema{Type: schema.TypeString},
},
"jwt_ttl": {
Type: schema.TypeInt,
Optional: true,
Description: "Creds expiration time in minutes",
Default: 0,
},
"product_type": {
Type: schema.TypeSet,
Optional: true,
Description: "Choose the relevant product type for the auth method [sm, sra, pm, dp, ca]",
Elem: &schema.Schema{Type: schema.TypeString},
},
"deny_rotate": {
Type: schema.TypeBool,
Optional: true,
Description: "Deny from the token to rotate",
},
"deny_inheritance": {
Type: schema.TypeBool,
Optional: true,
Description: "Deny from root to create children",
},
"ttl": {
Type: schema.TypeInt,
Optional: true,
Description: "Token ttl (in minutes)",
Default: 60,
},
"uid_expiration_event_at": {
Type: schema.TypeSet,
Optional: true,
Description: "Trigger an event when Universal Identity Token TTL has reached the specified percentage (e.g. 10, 20, 50)",
Elem: &schema.Schema{Type: schema.TypeString},
},
"audit_logs_claims": {
Type: schema.TypeSet,
Optional: true,
Description: "Subclaims to include in audit logs, e.g \"--audit-logs-claims email --audit-logs-claims username\"",
Elem: &schema.Schema{Type: schema.TypeString},
},
"delete_protection": {
Type: schema.TypeString,
Optional: true,
Description: "Protection from accidental deletion of this auth method, [true/false]",
Default: "false",
},
"access_id": {
Type: schema.TypeString,
Computed: true,
Description: "Auth Method access ID",
},
},
}
}
func resourceAuthMethodUniversalIdentityCreate(d *schema.ResourceData, m interface{}) error {
provider := m.(*providerMeta)
client := *provider.client
token := *provider.token
ctx := context.Background()
name := d.Get("name").(string)
accessExpires := d.Get("access_expires").(int)
allowedClientTypeSet := d.Get("allowed_client_type").(*schema.Set)
allowedClientType := common.ExpandStringList(allowedClientTypeSet.List())
boundIpsSet := d.Get("bound_ips").(*schema.Set)
boundIps := common.ExpandStringList(boundIpsSet.List())
description := d.Get("description").(string)
expirationEventInSet := d.Get("expiration_event_in").(*schema.Set)
expirationEventIn := common.ExpandStringList(expirationEventInSet.List())
forceSubClaims := d.Get("force_sub_claims").(bool)
gwBoundIpsSet := d.Get("gw_bound_ips").(*schema.Set)
gwBoundIps := common.ExpandStringList(gwBoundIpsSet.List())
jwtTtl := d.Get("jwt_ttl").(int)
productTypeSet := d.Get("product_type").(*schema.Set)
productType := common.ExpandStringList(productTypeSet.List())
denyRotate := d.Get("deny_rotate").(bool)
denyInheritance := d.Get("deny_inheritance").(bool)
ttl := d.Get("ttl").(int)
uidExpirationEventAtSet := d.Get("uid_expiration_event_at").(*schema.Set)
uidExpirationEventAt := common.ExpandStringList(uidExpirationEventAtSet.List())
subClaimsSet := d.Get("audit_logs_claims").(*schema.Set)
subClaims := common.ExpandStringList(subClaimsSet.List())
deleteProtection := d.Get("delete_protection").(string)
body := akeyless_api.AuthMethodCreateUniversalIdentity{
Name: name,
Token: &token,
}
common.GetAkeylessPtr(&body.AccessExpires, accessExpires)
common.GetAkeylessPtr(&body.AllowedClientType, allowedClientType)
common.GetAkeylessPtr(&body.BoundIps, boundIps)
common.GetAkeylessPtr(&body.Description, description)
common.GetAkeylessPtr(&body.ExpirationEventIn, expirationEventIn)
common.GetAkeylessPtr(&body.ForceSubClaims, forceSubClaims)
common.GetAkeylessPtr(&body.GwBoundIps, gwBoundIps)
common.GetAkeylessPtr(&body.JwtTtl, jwtTtl)
common.GetAkeylessPtr(&body.ProductType, productType)
common.GetAkeylessPtr(&body.DenyRotate, denyRotate)
common.GetAkeylessPtr(&body.DenyInheritance, denyInheritance)
common.GetAkeylessPtr(&body.Ttl, ttl)
common.GetAkeylessPtr(&body.UidExpirationEventAt, uidExpirationEventAt)
common.GetAkeylessPtr(&body.AuditLogsClaims, subClaims)
common.GetAkeylessPtr(&body.DeleteProtection, deleteProtection)
rOut, resp, err := client.AuthMethodCreateUniversalIdentity(ctx).Body(body).Execute()
if err != nil {
return common.HandleError("can't create Auth Method", resp, err)
}
if rOut.AccessId != nil {
err = d.Set("access_id", *rOut.AccessId)
if err != nil {
return err
}
}
d.SetId(name)
return nil
}
func resourceAuthMethodUniversalIdentityRead(d *schema.ResourceData, m interface{}) error {
provider := m.(*providerMeta)
client := *provider.client
token := *provider.token
ctx := context.Background()
path := d.Id()
body := akeyless_api.AuthMethodGet{
Name: path,
Token: &token,
}
rOut, res, err := client.AuthMethodGet(ctx).Body(body).Execute()
if err != nil {
return common.HandleReadError(d, "can't get value", res, err)
}
if rOut.AuthMethodAccessId != nil {
err = d.Set("access_id", *rOut.AuthMethodAccessId)
if err != nil {
return err
}
}
if rOut.AccessInfo.AccessExpires != nil {
err = d.Set("access_expires", *rOut.AccessInfo.AccessExpires)
if err != nil {
return err
}
}
if len(rOut.AccessInfo.AllowedClientType) > 0 {
// Only set allowed_client_type if it was explicitly configured by the user
if _, ok := d.GetOk("allowed_client_type"); ok {
err = d.Set("allowed_client_type", rOut.AccessInfo.AllowedClientType)
if err != nil {
return err
}
}
}
if rOut.AccessInfo.ForceSubClaims != nil {
err = d.Set("force_sub_claims", *rOut.AccessInfo.ForceSubClaims)
if err != nil {
return err
}
}
if rOut.AccessInfo.CidrWhitelist != nil && *rOut.AccessInfo.CidrWhitelist != "" {
err = d.Set("bound_ips", strings.Split(*rOut.AccessInfo.CidrWhitelist, ","))
if err != nil {
return err
}
}
if rOut.AccessInfo.GwCidrWhitelist != nil && *rOut.AccessInfo.GwCidrWhitelist != "" {
err = d.Set("gw_bound_ips", strings.Split(*rOut.AccessInfo.GwCidrWhitelist, ","))
if err != nil {
return err
}
}
if rOut.AccessInfo.ProductTypes != nil {
err = d.Set("product_type", rOut.AccessInfo.ProductTypes)
if err != nil {
return err
}
}
rOutAcc, err := getAccountSettings(m)
if err != nil {
return err
}
jwtDefault := extractAccountJwtTtlDefault(rOutAcc)
if rOut.AccessInfo.JwtTtl != nil {
if *rOut.AccessInfo.JwtTtl != jwtDefault || d.Get("jwt_ttl").(int) != 0 {
err = d.Set("jwt_ttl", *rOut.AccessInfo.JwtTtl)
if err != nil {
return err
}
}
}
if rOut.AccessInfo.UniversalIdentityAccessRules.DenyRotate != nil {
err = d.Set("deny_rotate", *rOut.AccessInfo.UniversalIdentityAccessRules.DenyRotate)
if err != nil {
return err
}
}
if rOut.AccessInfo.UniversalIdentityAccessRules.DenyInheritance != nil {
err = d.Set("deny_inheritance", *rOut.AccessInfo.UniversalIdentityAccessRules.DenyInheritance)
if err != nil {
return err
}
}
if rOut.AccessInfo.UniversalIdentityAccessRules.Ttl != nil {
err = d.Set("ttl", *rOut.AccessInfo.UniversalIdentityAccessRules.Ttl)
if err != nil {
return err
}
}
if len(rOut.AccessInfo.UidExpirationEvents) > 0 {
vals := make([]string, 0, len(rOut.AccessInfo.UidExpirationEvents))
for _, ev := range rOut.AccessInfo.UidExpirationEvents {
if ev.PercentPassed != nil {
vals = append(vals, strconv.FormatInt(*ev.PercentPassed, 10))
}
}
if len(vals) > 0 {
err = d.Set("uid_expiration_event_at", vals)
if err != nil {
return err
}
}
}
if rOut.AccessInfo.AuditLogsClaims != nil {
err = d.Set("audit_logs_claims", rOut.AccessInfo.AuditLogsClaims)
if err != nil {
return err
}
}
deleteProtectionVal := "false"
if rOut.DeleteProtection != nil {
deleteProtectionVal = strconv.FormatBool(*rOut.DeleteProtection)
}
err = d.Set("delete_protection", deleteProtectionVal)
if err != nil {
return err
}
if rOut.Description != nil {
err = d.Set("description", *rOut.Description)
if err != nil {
return err
}
}
if rOut.ExpirationEvents != nil {
err := d.Set("expiration_event_in", common.ReadAuthExpirationEventInParam(rOut.ExpirationEvents))
if err != nil {
return err
}
}
d.SetId(path)
return nil
}
func resourceAuthMethodUniversalIdentityUpdate(d *schema.ResourceData, m interface{}) error {
provider := m.(*providerMeta)
client := *provider.client
token := *provider.token
ctx := context.Background()
name := d.Get("name").(string)
accessExpires := d.Get("access_expires").(int)
allowedClientTypeSet := d.Get("allowed_client_type").(*schema.Set)
allowedClientType := common.ExpandStringList(allowedClientTypeSet.List())
boundIpsSet := d.Get("bound_ips").(*schema.Set)
boundIps := common.ExpandStringList(boundIpsSet.List())
description := d.Get("description").(string)
expirationEventInSet := d.Get("expiration_event_in").(*schema.Set)
expirationEventIn := common.ExpandStringList(expirationEventInSet.List())
forceSubClaims := d.Get("force_sub_claims").(bool)
gwBoundIpsSet := d.Get("gw_bound_ips").(*schema.Set)
gwBoundIps := common.ExpandStringList(gwBoundIpsSet.List())
jwtTtl := d.Get("jwt_ttl").(int)
productTypeSet := d.Get("product_type").(*schema.Set)
productType := common.ExpandStringList(productTypeSet.List())
denyRotate := d.Get("deny_rotate").(bool)
denyInheritance := d.Get("deny_inheritance").(bool)
ttl := d.Get("ttl").(int)
uidExpirationEventAtSet := d.Get("uid_expiration_event_at").(*schema.Set)
uidExpirationEventAt := common.ExpandStringList(uidExpirationEventAtSet.List())
subClaimsSet := d.Get("audit_logs_claims").(*schema.Set)
subClaims := common.ExpandStringList(subClaimsSet.List())
deleteProtection := d.Get("delete_protection").(string)
body := akeyless_api.AuthMethodUpdateUniversalIdentity{
Name: name,
Token: &token,
}
common.GetAkeylessPtr(&body.AccessExpires, accessExpires)
common.GetAkeylessPtr(&body.AllowedClientType, allowedClientType)
common.GetAkeylessPtr(&body.BoundIps, boundIps)
common.GetAkeylessPtr(&body.Description, description)
common.GetAkeylessPtr(&body.ExpirationEventIn, expirationEventIn)
common.GetAkeylessPtr(&body.ForceSubClaims, forceSubClaims)
common.GetAkeylessPtr(&body.GwBoundIps, gwBoundIps)
common.GetAkeylessPtr(&body.JwtTtl, jwtTtl)
common.GetAkeylessPtr(&body.ProductType, productType)
common.GetAkeylessPtr(&body.DenyRotate, denyRotate)
common.GetAkeylessPtr(&body.DenyInheritance, denyInheritance)
common.GetAkeylessPtr(&body.Ttl, ttl)
common.GetAkeylessPtr(&body.UidExpirationEventAt, uidExpirationEventAt)
common.GetAkeylessPtr(&body.AuditLogsClaims, subClaims)
common.GetAkeylessPtr(&body.NewName, name)
common.GetAkeylessPtr(&body.DeleteProtection, deleteProtection)
_, resp, err := client.AuthMethodUpdateUniversalIdentity(ctx).Body(body).Execute()
if err != nil {
return common.HandleError("can't update auth method", resp, err)
}
d.SetId(name)
return nil
}
func resourceAuthMethodUniversalIdentityDelete(d *schema.ResourceData, m interface{}) error {
provider := m.(*providerMeta)
client := *provider.client
token := *provider.token
path := d.Id()
deleteItem := akeyless_api.AuthMethodDelete{
Token: &token,
Name: path,
}
ctx := context.Background()
_, _, err := client.AuthMethodDelete(ctx).Body(deleteItem).Execute()
if err != nil {
return err
}
return nil
}
func resourceAuthMethodUniversalIdentityImport(d *schema.ResourceData, m interface{}) ([]*schema.ResourceData, error) {
id := d.Id()
err := resourceAuthMethodUniversalIdentityRead(d, m)
if err != nil {
return nil, err
}
err = d.Set("name", id)
if err != nil {
return nil, err
}
return []*schema.ResourceData{d}, nil
}