forked from GoogleCloudPlatform/magic-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresource_endpoints_service.go
432 lines (394 loc) · 14.6 KB
/
resource_endpoints_service.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
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
package google
import (
"context"
"encoding/base64"
"encoding/json"
"errors"
"fmt"
"log"
"regexp"
"strconv"
"strings"
"time"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"google.golang.org/api/servicemanagement/v1"
)
func resourceEndpointsService() *schema.Resource {
return &schema.Resource{
Create: resourceEndpointsServiceCreate,
Read: resourceEndpointsServiceRead,
Delete: resourceEndpointsServiceDelete,
Update: resourceEndpointsServiceUpdate,
// Migrates protoc_output -> protoc_output_base64.
SchemaVersion: 1,
MigrateState: migrateEndpointsService,
Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(10 * time.Minute),
Update: schema.DefaultTimeout(10 * time.Minute),
Delete: schema.DefaultTimeout(10 * time.Minute),
},
Schema: map[string]*schema.Schema{
"service_name": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: `The name of the service. Usually of the form $apiname.endpoints.$projectid.cloud.goog.`,
},
"openapi_config": {
Type: schema.TypeString,
Optional: true,
ConflictsWith: []string{"grpc_config", "protoc_output_base64"},
Description: `The full text of the OpenAPI YAML configuration as described here. Either this, or both of grpc_config and protoc_output_base64 must be specified.`,
},
"grpc_config": {
Type: schema.TypeString,
Optional: true,
Description: `The full text of the Service Config YAML file (Example located here). If provided, must also provide protoc_output_base64. open_api config must not be provided.`,
},
"protoc_output_base64": {
Type: schema.TypeString,
Optional: true,
Description: `The full contents of the Service Descriptor File generated by protoc. This should be a compiled .pb file, base64-encoded.`,
},
"project": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ForceNew: true,
Description: `The project ID that the service belongs to. If not provided, provider project is used.`,
},
"config_id": {
Type: schema.TypeString,
Computed: true,
Description: `The autogenerated ID for the configuration that is rolled out as part of the creation of this resource. Must be provided to compute engine instances as a tag.`,
},
"apis": {
Type: schema.TypeList,
Computed: true,
Description: `A list of API objects.`,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Computed: true,
Description: `The FQDN of the API as described in the provided config.`,
},
"syntax": {
Type: schema.TypeString,
Computed: true,
Description: `SYNTAX_PROTO2 or SYNTAX_PROTO3.`,
},
"version": {
Type: schema.TypeString,
Computed: true,
Description: `A version string for this api. If specified, will have the form major-version.minor-version, e.g. 1.10.`,
},
"methods": {
Type: schema.TypeList,
Computed: true,
Description: `A list of Method objects.`,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Computed: true,
Description: `The simple name of this method as described in the provided config.`,
},
"syntax": {
Type: schema.TypeString,
Computed: true,
Description: `SYNTAX_PROTO2 or SYNTAX_PROTO3.`,
},
"request_type": {
Type: schema.TypeString,
Computed: true,
Description: `The type URL for the request to this API.`,
},
"response_type": {
Type: schema.TypeString,
Computed: true,
Description: `The type URL for the response from this API.`,
},
},
},
},
},
},
},
"dns_address": {
Type: schema.TypeString,
Computed: true,
Description: `The address at which the service can be found - usually the same as the service name.`,
},
"endpoints": {
Type: schema.TypeList,
Computed: true,
Description: `A list of Endpoint objects.`,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Computed: true,
Description: `The simple name of the endpoint as described in the config.`,
},
"address": {
Type: schema.TypeString,
Computed: true,
Description: `The FQDN of the endpoint as described in the config.`,
},
},
},
},
},
CustomizeDiff: predictServiceId,
UseJSONNumber: true,
}
}
func predictServiceId(_ context.Context, d *schema.ResourceDiff, meta interface{}) error {
if !d.HasChange("openapi_config") && !d.HasChange("grpc_config") && !d.HasChange("protoc_output_base64") {
return nil
}
baseDate := time.Now().Format("2006-01-02")
oldConfigId := d.Get("config_id").(string)
if match, err := regexp.MatchString(`\d\d\d\d-\d\d-\d\dr\d*`, oldConfigId); !match || err != nil {
// If we do not match the expected format, we will guess
// wrong and that is worse than not guessing.
return nil
}
if strings.HasPrefix(oldConfigId, baseDate) {
n, err := strconv.Atoi(strings.Split(oldConfigId, "r")[1])
if err != nil {
return err
}
if err := d.SetNew("config_id", fmt.Sprintf("%sr%d", baseDate, n+1)); err != nil {
return err
}
} else {
if err := d.SetNew("config_id", baseDate+"r0"); err != nil {
return err
}
}
return nil
}
func getEndpointServiceOpenAPIConfigSource(configText string) *servicemanagement.ConfigSource {
// We need to provide a ConfigSource object to the API whenever submitting a
// new config. A ConfigSource contains a ConfigFile which contains the b64
// encoded contents of the file. OpenAPI requires only one file.
configfile := servicemanagement.ConfigFile{
FileContents: base64.StdEncoding.EncodeToString([]byte(configText)),
FileType: "OPEN_API_YAML",
FilePath: "heredoc.yaml",
}
return &servicemanagement.ConfigSource{
Files: []*servicemanagement.ConfigFile{&configfile},
}
}
func getEndpointServiceGRPCConfigSource(serviceConfig, protoConfig string) *servicemanagement.ConfigSource {
// gRPC requires both the file specifying the service and the compiled protobuf,
// but they can be in any order.
ymlConfigfile := servicemanagement.ConfigFile{
FileContents: base64.StdEncoding.EncodeToString([]byte(serviceConfig)),
FileType: "SERVICE_CONFIG_YAML",
FilePath: "heredoc.yaml",
}
protoConfigfile := servicemanagement.ConfigFile{
FileContents: protoConfig,
FileType: "FILE_DESCRIPTOR_SET_PROTO",
FilePath: "api_def.pb",
}
return &servicemanagement.ConfigSource{
Files: []*servicemanagement.ConfigFile{&ymlConfigfile, &protoConfigfile},
}
}
func resourceEndpointsServiceCreate(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)
userAgent, err := generateUserAgentString(d, config.userAgent)
if err != nil {
return err
}
project, err := getProject(d, config)
if err != nil {
return err
}
// If the service doesn't exist, we'll need to create it, but if it does, it
// will be reused. This is unusual for Terraform, but it causes the behavior
// that users will want and accept. Users of Endpoints are not thinking in
// terms of services, configs, and rollouts - they just want the setup declared
// in their config to happen. The fact that a service may need to be created
// is not interesting to them. Consequently, we create this service if necessary
// so that we can perform the rollout without further disruption, which is the
// action that a user running `terraform apply` is going to want.
serviceName := d.Get("service_name").(string)
log.Printf("[DEBUG] Create Endpoint Service %q", serviceName)
log.Printf("[DEBUG] Checking for existing ManagedService %q", serviceName)
_, err = config.NewServiceManClient(userAgent).Services.Get(serviceName).Do()
if err != nil {
log.Printf("[DEBUG] Creating new ServiceManagement ManagedService %q", serviceName)
op, err := config.NewServiceManClient(userAgent).Services.Create(
&servicemanagement.ManagedService{
ProducerProjectId: project,
ServiceName: serviceName,
}).Do()
if err != nil {
return err
}
_, err = serviceManagementOperationWaitTime(config, op, "Creating new ManagedService.", userAgent, d.Timeout(schema.TimeoutCreate))
if err != nil {
return err
}
}
// Use update to set other fields like config.
err = resourceEndpointsServiceUpdate(d, meta)
if err != nil {
return err
}
d.SetId(serviceName)
return resourceEndpointsServiceRead(d, meta)
}
func expandEndpointServiceConfigSource(d *schema.ResourceData, meta interface{}) (*servicemanagement.ConfigSource, error) {
if openapiConfig, ok := d.GetOk("openapi_config"); ok {
return getEndpointServiceOpenAPIConfigSource(openapiConfig.(string)), nil
}
grpcConfig, gok := d.GetOk("grpc_config")
protocOutput, pok := d.GetOk("protoc_output_base64")
if gok && pok {
return getEndpointServiceGRPCConfigSource(grpcConfig.(string), protocOutput.(string)), nil
}
return nil, errors.New("Could not parse config - either openapi_config or both grpc_config and protoc_output_base64 must be set.")
}
func resourceEndpointsServiceUpdate(d *schema.ResourceData, meta interface{}) error {
// This update is not quite standard for a terraform resource. Instead of
// using the go client library to send an HTTP request to update something
// serverside, we have to push a new configuration, wait for it to be
// parsed and loaded, then create and push a rollout and wait for that
// rollout to be completed.
// There's a lot of moving parts there, and all of them have knobs that can
// be tweaked if the user is using gcloud. In the interest of simplicity,
// we currently only support full rollouts - anyone trying to do incremental
// rollouts or A/B testing is going to need a more precise tool than this resource.
config := meta.(*Config)
userAgent, err := generateUserAgentString(d, config.userAgent)
if err != nil {
return err
}
serviceName := d.Get("service_name").(string)
log.Printf("[DEBUG] Updating ManagedService %q", serviceName)
cfgSource, err := expandEndpointServiceConfigSource(d, meta)
if err != nil {
return err
}
log.Printf("[DEBUG] Updating ManagedService %q", serviceName)
// The difference between "submit" and "create" is that submit parses the config
// you provide, where "create" requires the config in a pre-parsed format.
// "submit" will be a lot more flexible for users and will always be up-to-date
// with any new features that arise - this is why you provide a YAML config
// instead of providing the config in HCL.
log.Printf("[DEBUG] Submitting config for ManagedService %q", serviceName)
op, err := config.NewServiceManClient(userAgent).Services.Configs.Submit(
serviceName,
&servicemanagement.SubmitConfigSourceRequest{
ConfigSource: cfgSource,
}).Do()
if err != nil {
return err
}
s, err := serviceManagementOperationWaitTime(config, op, "Submitting service config.", userAgent, d.Timeout(schema.TimeoutUpdate))
if err != nil {
return err
}
var serviceConfig servicemanagement.SubmitConfigSourceResponse
if err := json.Unmarshal(s, &serviceConfig); err != nil {
return err
}
// Next, we create a new rollout with the new config value, and wait for it to complete.
rollout := servicemanagement.Rollout{
ServiceName: serviceName,
TrafficPercentStrategy: &servicemanagement.TrafficPercentStrategy{
Percentages: map[string]float64{serviceConfig.ServiceConfig.Id: 100.0},
},
}
log.Printf("[DEBUG] Creating new rollout for ManagedService %q", serviceName)
op, err = config.NewServiceManClient(userAgent).Services.Rollouts.Create(serviceName, &rollout).Do()
if err != nil {
return err
}
_, err = serviceManagementOperationWaitTime(config, op, "Performing service rollout.", userAgent, d.Timeout(schema.TimeoutUpdate))
if err != nil {
return err
}
return resourceEndpointsServiceRead(d, meta)
}
func resourceEndpointsServiceDelete(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)
userAgent, err := generateUserAgentString(d, config.userAgent)
if err != nil {
return err
}
log.Printf("[DEBUG] Deleting ManagedService %q", d.Id())
op, err := config.NewServiceManClient(userAgent).Services.Delete(d.Get("service_name").(string)).Do()
if err != nil {
return err
}
_, err = serviceManagementOperationWaitTime(config, op, "Deleting service.", userAgent, d.Timeout(schema.TimeoutDelete))
d.SetId("")
return err
}
func resourceEndpointsServiceRead(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)
userAgent, err := generateUserAgentString(d, config.userAgent)
if err != nil {
return err
}
log.Printf("[DEBUG] Reading ManagedService %q", d.Id())
service, err := config.NewServiceManClient(userAgent).Services.GetConfig(d.Get("service_name").(string)).Do()
if err != nil {
return err
}
if err := d.Set("config_id", service.Id); err != nil {
return fmt.Errorf("Error setting config_id: %s", err)
}
if err := d.Set("dns_address", service.Name); err != nil {
return fmt.Errorf("Error setting dns_address: %s", err)
}
if err := d.Set("apis", flattenServiceManagementAPIs(service.Apis)); err != nil {
return fmt.Errorf("Error setting apis: %s", err)
}
if err := d.Set("endpoints", flattenServiceManagementEndpoints(service.Endpoints)); err != nil {
return fmt.Errorf("Error setting endpoints: %s", err)
}
return nil
}
func flattenServiceManagementAPIs(apis []*servicemanagement.Api) []map[string]interface{} {
flattened := make([]map[string]interface{}, len(apis))
for i, a := range apis {
flattened[i] = map[string]interface{}{
"name": a.Name,
"version": a.Version,
"syntax": a.Syntax,
"methods": flattenServiceManagementMethods(a.Methods),
}
}
return flattened
}
func flattenServiceManagementMethods(methods []*servicemanagement.Method) []map[string]interface{} {
flattened := make([]map[string]interface{}, len(methods))
for i, m := range methods {
flattened[i] = map[string]interface{}{
"name": m.Name,
"syntax": m.Syntax,
"request_type": m.RequestTypeUrl,
"response_type": m.ResponseTypeUrl,
}
}
return flattened
}
func flattenServiceManagementEndpoints(endpoints []*servicemanagement.Endpoint) []map[string]interface{} {
flattened := make([]map[string]interface{}, len(endpoints))
for i, e := range endpoints {
flattened[i] = map[string]interface{}{
"name": e.Name,
"address": e.Target,
}
}
return flattened
}