-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathdata_source_datadog_permissions.go
75 lines (65 loc) · 2.31 KB
/
data_source_datadog_permissions.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
package datadog
import (
"context"
"fmt"
"github.com/terraform-providers/terraform-provider-datadog/datadog/internal/utils"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)
func dataSourceDatadogPermissions() *schema.Resource {
return &schema.Resource{
Description: "Use this data source to retrieve the list of Datadog permissions by name and their corresponding ID, for use in the role resource.",
ReadContext: dataSourceDatadogPermissionsRead,
SchemaFunc: func() map[string]*schema.Schema {
return map[string]*schema.Schema{
"include_restricted": {
Description: "Whether to include restricted permissions. Restricted permissions are granted by default to all users of a Datadog org, and cannot be manually granted or revoked.",
Type: schema.TypeBool,
Default: false,
Optional: true,
},
// Computed values
"permissions": {
Description: "Map of permissions names to their corresponding ID.",
Type: schema.TypeMap,
Computed: true,
Elem: &schema.Schema{
Type: schema.TypeString,
},
},
}
},
}
}
func dataSourceDatadogPermissionsRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
providerConf := meta.(*ProviderConfiguration)
apiInstances := providerConf.DatadogApiInstances
auth := providerConf.Auth
res, resp, err := apiInstances.GetRolesApiV2().ListPermissions(auth)
if err != nil {
return utils.TranslateClientErrorDiag(err, resp, "error listing permissions")
}
diags := diag.Diagnostics{}
perms := res.GetData()
permsNameToID := make(map[string]string, len(perms))
includeRestricted := d.Get("include_restricted").(bool)
for _, perm := range perms {
if !includeRestricted && perm.Attributes.GetRestricted() {
continue
}
if err := utils.CheckForUnparsed(perm); err != nil {
diags = append(diags, diag.Diagnostic{
Severity: diag.Warning,
Summary: fmt.Sprintf("skipping permission with id: %s", perm.GetId()),
Detail: fmt.Sprintf("permission contains unparsed object: %v", err),
})
continue
}
permsNameToID[perm.Attributes.GetName()] = perm.GetId()
}
if err := d.Set("permissions", permsNameToID); err != nil {
return diag.FromErr(err)
}
d.SetId("datadog-permissions")
return diags
}