-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathresource_datadog_integration_pagerduty_service_object.go
157 lines (128 loc) · 6.18 KB
/
resource_datadog_integration_pagerduty_service_object.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
package datadog
import (
"context"
"fmt"
"os"
"github.com/terraform-providers/terraform-provider-datadog/datadog/internal/utils"
"github.com/DataDog/datadog-api-client-go/v2/api/datadogV1"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)
const maskedSecret = "*****"
func resourceDatadogIntegrationPagerdutySO() *schema.Resource {
return &schema.Resource{
Description: "Provides access to individual Service Objects of Datadog - PagerDuty integrations. Note that the Datadog - PagerDuty integration must be activated in the Datadog UI in order for this resource to be usable.",
CreateContext: resourceDatadogIntegrationPagerdutySOCreate,
ReadContext: resourceDatadogIntegrationPagerdutySORead,
UpdateContext: resourceDatadogIntegrationPagerdutySOUpdate,
DeleteContext: resourceDatadogIntegrationPagerdutySODelete,
Importer: &schema.ResourceImporter{
StateContext: resourceDatadogIntegrationPagerdutySOImport,
},
SchemaFunc: func() map[string]*schema.Schema {
return map[string]*schema.Schema{
"service_name": {
Description: "Your Service name in PagerDuty.",
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"service_key": {
Description: "Your Service name associated service key in PagerDuty. This key may also be referred to as an Integration Key or Routing Key in the Pagerduty Integration [documentation](https://www.pagerduty.com/docs/guides/datadog-integration-guide/), UI, and within the [Pagerduty Provider for Terraform](https://registry.terraform.io/providers/PagerDuty/pagerduty/latest/docs/resources/service_integration#integration_key) Note: Since the Datadog API never returns service keys, it is impossible to detect [drifts](https://www.hashicorp.com/blog/detecting-and-managing-drift-with-terraform). The best way to solve a drift is to manually mark the Service Object resource with [terraform taint](https://www.terraform.io/docs/commands/taint.html) to have it destroyed and recreated.",
Type: schema.TypeString,
Required: true,
Sensitive: true,
},
}
},
}
}
func buildIntegrationPagerdutySO(d *schema.ResourceData) *datadogV1.PagerDutyService {
so := &datadogV1.PagerDutyService{}
if v, ok := d.GetOk("service_name"); ok {
so.SetServiceName(v.(string))
}
if v, ok := d.GetOk("service_key"); ok {
so.SetServiceKey(v.(string))
}
return so
}
func buildIntegrationPagerdutyServiceKey(d *schema.ResourceData) *datadogV1.PagerDutyServiceKey {
serviceKey := &datadogV1.PagerDutyServiceKey{}
if v, ok := d.GetOk("service_key"); ok {
serviceKey.SetServiceKey(v.(string))
}
return serviceKey
}
func resourceDatadogIntegrationPagerdutySOCreate(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
providerConf := meta.(*ProviderConfiguration)
apiInstances := providerConf.DatadogApiInstances
auth := providerConf.Auth
integrationPdMutex.Lock()
defer integrationPdMutex.Unlock()
so := buildIntegrationPagerdutySO(d)
if _, httpresp, err := apiInstances.GetPagerDutyIntegrationApiV1().CreatePagerDutyIntegrationService(auth, *so); err != nil {
// TODO: warn user that PD integration must be enabled to be able to create service objects
return utils.TranslateClientErrorDiag(err, httpresp, "error creating PagerDuty integration service")
}
d.SetId(so.GetServiceName())
return resourceDatadogIntegrationPagerdutySORead(ctx, d, meta)
}
func resourceDatadogIntegrationPagerdutySORead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
providerConf := meta.(*ProviderConfiguration)
apiInstances := providerConf.DatadogApiInstances
auth := providerConf.Auth
so, httpresp, err := apiInstances.GetPagerDutyIntegrationApiV1().GetPagerDutyIntegrationService(auth, d.Id())
if err != nil {
if httpresp != nil && httpresp.StatusCode == 404 {
d.SetId("")
return nil
}
return utils.TranslateClientErrorDiag(err, httpresp, "error getting PagerDuty integration service")
}
if err := utils.CheckForUnparsed(so); err != nil {
return diag.FromErr(err)
}
d.Set("service_name", so.GetServiceName())
// Only update service_key if not set on d - the API endpoints never return
// the keys, so this is how we recognize new values.
if _, ok := d.GetOk("service_key"); !ok {
d.Set("service_key", maskedSecret)
}
return nil
}
func resourceDatadogIntegrationPagerdutySOUpdate(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
providerConf := meta.(*ProviderConfiguration)
apiInstances := providerConf.DatadogApiInstances
auth := providerConf.Auth
integrationPdMutex.Lock()
defer integrationPdMutex.Unlock()
serviceKey := buildIntegrationPagerdutyServiceKey(d)
if httpresp, err := apiInstances.GetPagerDutyIntegrationApiV1().UpdatePagerDutyIntegrationService(auth, d.Id(), *serviceKey); err != nil {
return utils.TranslateClientErrorDiag(err, httpresp, "error updating PagerDuty integration service")
}
return resourceDatadogIntegrationPagerdutySORead(ctx, d, meta)
}
func resourceDatadogIntegrationPagerdutySODelete(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
providerConf := meta.(*ProviderConfiguration)
apiInstances := providerConf.DatadogApiInstances
auth := providerConf.Auth
integrationPdMutex.Lock()
defer integrationPdMutex.Unlock()
if httpresp, err := apiInstances.GetPagerDutyIntegrationApiV1().DeletePagerDutyIntegrationService(auth, d.Id()); err != nil {
return utils.TranslateClientErrorDiag(err, httpresp, "error deleting PagerDuty integration service")
}
return nil
}
func resourceDatadogIntegrationPagerdutySOImport(ctx context.Context, d *schema.ResourceData, meta interface{}) ([]*schema.ResourceData, error) {
originalId := d.Id()
if diagErr := resourceDatadogIntegrationPagerdutySORead(ctx, d, meta); diagErr != nil {
return nil, fmt.Errorf(diagErr[0].Summary)
}
// We can assume resource was not found for import when `id` is set to nil in the read step
if d.Id() == "" {
return nil, fmt.Errorf("error importing pagerduty service object. Resource with id `%s` does not exist", originalId)
}
d.Set("service_key", os.Getenv("SERVICE_KEY"))
return []*schema.ResourceData{d}, nil
}