-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathresource_sourcesecret.go
399 lines (326 loc) · 15 KB
/
resource_sourcesecret.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
// © Broadcom. All Rights Reserved.
// The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries.
// SPDX-License-Identifier: MPL-2.0
package sourcesecret
import (
"context"
"log"
"strings"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/customdiff"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/pkg/errors"
"github.com/vmware/terraform-provider-tanzu-mission-control/internal/authctx"
clienterrors "github.com/vmware/terraform-provider-tanzu-mission-control/internal/client/errors"
"github.com/vmware/terraform-provider-tanzu-mission-control/internal/helper"
objectmetamodel "github.com/vmware/terraform-provider-tanzu-mission-control/internal/models/objectmeta"
sourcesecretclustermodel "github.com/vmware/terraform-provider-tanzu-mission-control/internal/models/sourcesecret/cluster"
sourcesecretclustergroupmodel "github.com/vmware/terraform-provider-tanzu-mission-control/internal/models/sourcesecret/clustergroup"
"github.com/vmware/terraform-provider-tanzu-mission-control/internal/resources/common"
commonscope "github.com/vmware/terraform-provider-tanzu-mission-control/internal/resources/common/scope"
"github.com/vmware/terraform-provider-tanzu-mission-control/internal/resources/sourcesecret/scope"
"github.com/vmware/terraform-provider-tanzu-mission-control/internal/resources/sourcesecret/spec"
)
type contextMethodKey struct{}
func ResourceSourceSecret() *schema.Resource {
return &schema.Resource{
CreateContext: resourceSourcesecretCreate,
DeleteContext: resourceSourcesecretDelete,
UpdateContext: resourceSourcesecretInPlaceUpdate,
ReadContext: resourceSourcesecretRead,
Schema: getResourceSchema(),
CustomizeDiff: customdiff.All(
spec.ValidateSpec,
schema.CustomizeDiffFunc(commonscope.ValidateScope(scope.CredentialTypesAllowed[:])),
),
}
}
func getResourceSchema() map[string]*schema.Schema {
return getSecretSchema(false)
}
func getDataSourceSchema() map[string]*schema.Schema {
return getSecretSchema(true)
}
func getSecretSchema(isDataSource bool) map[string]*schema.Schema {
var sourcesecretSchema = map[string]*schema.Schema{
nameKey: {
Type: schema.TypeString,
Description: "Name of the source secret.",
Required: true,
ForceNew: true,
},
orgIDKey: {
Type: schema.TypeString,
Description: "ID of Organization.",
Optional: true,
},
commonscope.ScopeKey: scope.ScopeSchema,
common.MetaKey: common.Meta,
}
innerMap := map[string]*schema.Schema{
spec.SpecKey: spec.SpecSchema,
}
for key, value := range innerMap {
if isDataSource {
sourcesecretSchema[key] = helper.UpdateDataSourceSchema(value)
} else {
sourcesecretSchema[key] = value
}
}
return sourcesecretSchema
}
func retrieveSourcesecretUIDMetaAndSpecFromServer(config authctx.TanzuContext, scopedFullnameData *scope.ScopedFullname, d *schema.ResourceData) (
string,
*objectmetamodel.VmwareTanzuCoreV1alpha1ObjectMeta,
*sourcesecretclustermodel.VmwareTanzuManageV1alpha1ClusterFluxcdSourcesecretSpec,
error) {
var (
UID string
meta *objectmetamodel.VmwareTanzuCoreV1alpha1ObjectMeta
spec *sourcesecretclustermodel.VmwareTanzuManageV1alpha1ClusterFluxcdSourcesecretSpec
)
switch scopedFullnameData.Scope {
case commonscope.ClusterScope:
if scopedFullnameData.FullnameCluster != nil {
resp, err := config.TMCConnection.ClusterSourcesecretResourceService.ManageV1alpha1ClusterFluxcdSourcesecretResourceServiceGet(scopedFullnameData.FullnameCluster)
if err != nil {
if clienterrors.IsNotFoundError(err) {
d.SetId("")
return "", nil, nil, err
}
return "", nil, nil, errors.Wrapf(err, "Unable to get Tanzu Mission Control cluster source secret entry, name : %s", scopedFullnameData.FullnameCluster.Name)
}
scopedFullnameData = &scope.ScopedFullname{
Scope: commonscope.ClusterScope,
FullnameCluster: resp.SourceSecret.FullName,
}
fullName, name := scope.FlattenScope(scopedFullnameData)
if err := d.Set(nameKey, name); err != nil {
return "", nil, nil, err
}
if err := d.Set(commonscope.ScopeKey, fullName); err != nil {
return "", nil, nil, err
}
UID = resp.SourceSecret.Meta.UID
meta = resp.SourceSecret.Meta
spec = resp.SourceSecret.Spec
}
case commonscope.ClusterGroupScope:
if scopedFullnameData.FullnameClusterGroup != nil {
resp, err := config.TMCConnection.ClusterGroupSourcesecretResourceService.ManageV1alpha1ClustergroupFluxcdSourcesecretResourceServiceGet(scopedFullnameData.FullnameClusterGroup)
if err != nil {
if clienterrors.IsNotFoundError(err) {
d.SetId("")
return "", nil, nil, err
}
return "", nil, nil, errors.Wrapf(err, "Unable to get Tanzu Mission Control cluster group source secret entry, name : %s", scopedFullnameData.FullnameClusterGroup.Name)
}
scopedFullnameData = &scope.ScopedFullname{
Scope: commonscope.ClusterGroupScope,
FullnameClusterGroup: resp.SourceSecret.FullName,
}
fullName, name := scope.FlattenScope(scopedFullnameData)
if err := d.Set(nameKey, name); err != nil {
return "", nil, nil, err
}
if err := d.Set(commonscope.ScopeKey, fullName); err != nil {
return "", nil, nil, err
}
UID = resp.SourceSecret.Meta.UID
meta = resp.SourceSecret.Meta
spec = resp.SourceSecret.Spec.AtomicSpec
}
case commonscope.UnknownScope:
return "", nil, nil, errors.Errorf("no valid scope type block found: minimum one valid scope type block is required among: %v. Please check the schema.", strings.Join(scope.CredentialTypesAllowed[:], `, `))
}
return UID, meta, spec, nil
}
func resourceSourcesecretCreate(ctx context.Context, d *schema.ResourceData, m interface{}) (diags diag.Diagnostics) {
config := m.(authctx.TanzuContext)
sourcesecretName, ok := d.Get(nameKey).(string)
if !ok {
return diag.Errorf("unable to read source secret name")
}
scopedFullnameData, _ := scope.ConstructScope(d, sourcesecretName)
if scopedFullnameData == nil {
return diag.Errorf("Unable to create Tanzu Mission Control source secret entry; Scope full name is empty")
}
var (
UID string
meta = common.ConstructMeta(d)
)
err := enableContinuousDelivery(&config, scopedFullnameData, meta)
if err != nil {
return diag.FromErr(errors.Wrapf(err, "Unable to create Tanzu Mission Control source secret entry, name : %s", sourcesecretName))
}
switch scopedFullnameData.Scope {
case commonscope.ClusterScope:
if scopedFullnameData.FullnameCluster != nil {
sourcesecretReq := &sourcesecretclustermodel.VmwareTanzuManageV1alpha1ClusterFluxcdSourceSecretRequest{
SourceSecret: &sourcesecretclustermodel.VmwareTanzuManageV1alpha1ClusterFluxcdSourcesecret{
FullName: scopedFullnameData.FullnameCluster,
Meta: meta,
Spec: spec.ConstructSpecForClusterScope(d),
},
}
sourcesecretResponse, err := config.TMCConnection.ClusterSourcesecretResourceService.ManageV1alpha1ClusterFluxcdSourcesecretResourceServiceCreate(sourcesecretReq)
if err != nil {
return diag.FromErr(errors.Wrapf(err, "Unable to create Tanzu Mission Control cluster source secret entry, name : %s", sourcesecretName))
}
UID = sourcesecretResponse.SourceSecret.Meta.UID
}
case commonscope.ClusterGroupScope:
if scopedFullnameData.FullnameClusterGroup != nil {
sourcesecretReq := &sourcesecretclustergroupmodel.VmwareTanzuManageV1alpha1ClustergroupFluxcdSourceSecretRequest{
SourceSecret: &sourcesecretclustergroupmodel.VmwareTanzuManageV1alpha1ClustergroupFluxcdSourcesecretSourceSecret{
FullName: scopedFullnameData.FullnameClusterGroup,
Meta: meta,
Spec: spec.ConstructSpecForClusterGroupScope(d),
},
}
sourcesecretResponse, err := config.TMCConnection.ClusterGroupSourcesecretResourceService.ManageV1alpha1ClustergroupFluxcdSourcesecretResourceServiceCreate(sourcesecretReq)
if err != nil {
return diag.FromErr(errors.Wrapf(err, "Unable to create Tanzu Mission Control cluster group sourcesecret entry, name : %s", sourcesecretName))
}
UID = sourcesecretResponse.SourceSecret.Meta.UID
}
case commonscope.UnknownScope:
return diag.Errorf("no valid scope type block found: minimum one valid scope type block is required among: %v. Please check the schema.", strings.Join(scope.CredentialTypesAllowed[:], `, `))
}
// always run
d.SetId(UID)
return resourceSourcesecretRead(ctx, d, m)
}
func resourceSourcesecretInPlaceUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) (diags diag.Diagnostics) {
config := m.(authctx.TanzuContext)
sourcesecretName, ok := d.Get(nameKey).(string)
if !ok {
return diag.Errorf("unable to read source secret name")
}
scopedFullnameData, _ := scope.ConstructScope(d, sourcesecretName)
if scopedFullnameData == nil {
return diag.Errorf("Unable to update Tanzu Mission Control source secret entry; Scope full name is empty")
}
_, meta, atomicSpec, err := retrieveSourcesecretUIDMetaAndSpecFromServer(config, scopedFullnameData, d)
if err != nil {
return diag.FromErr(err)
}
var updateAvailable bool
if updateCheckForMeta(d, meta) {
updateAvailable = true
}
if updateCheckForSpec(d, atomicSpec, scopedFullnameData.Scope) {
updateAvailable = true
}
if !updateAvailable {
return diags
}
switch scopedFullnameData.Scope {
case commonscope.ClusterScope:
if scopedFullnameData.FullnameCluster != nil {
sourcesecretReq := &sourcesecretclustermodel.VmwareTanzuManageV1alpha1ClusterFluxcdSourceSecretRequest{
SourceSecret: &sourcesecretclustermodel.VmwareTanzuManageV1alpha1ClusterFluxcdSourcesecret{
FullName: scopedFullnameData.FullnameCluster,
Meta: meta,
Spec: atomicSpec,
},
}
_, err := config.TMCConnection.ClusterSourcesecretResourceService.ManageV1alpha1ClusterFluxcdSourcesecretResourceServiceUpdate(sourcesecretReq)
if err != nil {
return diag.FromErr(errors.Wrapf(err, "Unable to update Tanzu Mission Control cluster source secret entry, name : %s", sourcesecretName))
}
}
case commonscope.ClusterGroupScope:
if scopedFullnameData.FullnameClusterGroup != nil {
sourcesecretReq := &sourcesecretclustergroupmodel.VmwareTanzuManageV1alpha1ClustergroupFluxcdSourceSecretRequest{
SourceSecret: &sourcesecretclustergroupmodel.VmwareTanzuManageV1alpha1ClustergroupFluxcdSourcesecretSourceSecret{
FullName: scopedFullnameData.FullnameClusterGroup,
Meta: meta,
Spec: &sourcesecretclustergroupmodel.VmwareTanzuManageV1alpha1ClustergroupFluxcdSourcesecretSpec{
AtomicSpec: atomicSpec,
},
},
}
_, err := config.TMCConnection.ClusterGroupSourcesecretResourceService.ManageV1alpha1ClustergroupFluxcdSourcesecretResourceServiceUpdate(sourcesecretReq)
if err != nil {
return diag.FromErr(errors.Wrapf(err, "Unable to update Tanzu Mission Control cluster group source secret entry, name : %s", sourcesecretName))
}
}
case commonscope.UnknownScope:
return diag.Errorf("no valid scope type block found: minimum one valid scope type block is required among: %v. Please check the schema.", strings.Join(scope.CredentialTypesAllowed[:], `, `))
}
log.Printf("[INFO] source secret update successful")
return resourceSourcesecretRead(ctx, d, m)
}
func resourceSourcesecretDelete(ctx context.Context, d *schema.ResourceData, m interface{}) (diags diag.Diagnostics) {
config := m.(authctx.TanzuContext)
sourcesecretName, ok := d.Get(nameKey).(string)
if !ok {
return diag.Errorf("unable to read source secret name")
}
scopedFullnameData, _ := scope.ConstructScope(d, sourcesecretName)
if scopedFullnameData == nil {
return diag.Errorf("Unable to delete Tanzu Mission Control source secret entry; Scope full name is empty")
}
switch scopedFullnameData.Scope {
case commonscope.ClusterScope:
if scopedFullnameData.FullnameCluster != nil {
err := config.TMCConnection.ClusterSourcesecretResourceService.ManageV1alpha1ClusterFluxcdSourcesecretResourceServiceDelete(scopedFullnameData.FullnameCluster)
if err != nil && !clienterrors.IsNotFoundError(err) {
return diag.FromErr(errors.Wrapf(err, "Unable to delete Tanzu Mission Control cluster source secret entry, name : %s", sourcesecretName))
}
}
case commonscope.ClusterGroupScope:
if scopedFullnameData.FullnameClusterGroup != nil {
err := config.TMCConnection.ClusterGroupSourcesecretResourceService.ManageV1alpha1ClustergroupFluxcdSourcesecretResourceServiceDelete(scopedFullnameData.FullnameClusterGroup)
if err != nil && !clienterrors.IsNotFoundError(err) {
return diag.FromErr(errors.Wrapf(err, "Unable to delete Tanzu Mission Control cluster group source secret entry, name : %s", sourcesecretName))
}
}
case commonscope.UnknownScope:
return diag.Errorf("no valid scope type block found: minimum one valid scope type block is required among: %v. Please check the schema.", strings.Join(scope.CredentialTypesAllowed[:], `, `))
}
// d.SetId("") is automatically called assuming delete returns no errors, but
// it is added here for explicitness.
d.SetId("")
return diags
}
func updateCheckForMeta(d *schema.ResourceData, meta *objectmetamodel.VmwareTanzuCoreV1alpha1ObjectMeta) bool {
if !common.HasMetaChanged(d) {
return false
}
objectMeta := common.ConstructMeta(d)
if value, ok := meta.Labels[common.CreatorLabelKey]; ok {
objectMeta.Labels[common.CreatorLabelKey] = value
}
meta.Labels = objectMeta.Labels
meta.Description = objectMeta.Description
return true
}
func updateCheckForSpec(d *schema.ResourceData, atomicSpec *sourcesecretclustermodel.VmwareTanzuManageV1alpha1ClusterFluxcdSourcesecretSpec, scope commonscope.Scope) bool {
if !spec.HasSpecChanged(d) {
if *atomicSpec.SourceSecretType == *sourcesecretclustermodel.NewVmwareTanzuManageV1alpha1ClusterFluxcdSourcesecretType(sourcesecretclustermodel.VmwareTanzuManageV1alpha1ClusterFluxcdSourcesecretTypeUSERNAMEPASSWORD) {
specTypeData, _ := (d.Get(helper.GetFirstElementOf(spec.SpecKey, spec.DataKey, spec.UsernamePasswordKey, spec.PasswordKey))).(string)
val, _ := spec.GetEncodedSpecData(specTypeData)
atomicSpec.Data.Data[spec.PasswordKey] = val
}
if *atomicSpec.SourceSecretType == *sourcesecretclustermodel.NewVmwareTanzuManageV1alpha1ClusterFluxcdSourcesecretType(sourcesecretclustermodel.VmwareTanzuManageV1alpha1ClusterFluxcdSourcesecretTypeSSH) {
specTypeData, _ := (d.Get(helper.GetFirstElementOf(spec.SpecKey, spec.DataKey, spec.SSHKey, spec.IdentityKey))).(string)
val, _ := spec.GetEncodedSpecData(specTypeData)
atomicSpec.Data.Data[spec.IdentityKey] = val
}
return false
}
var sourcesecretSpec *sourcesecretclustermodel.VmwareTanzuManageV1alpha1ClusterFluxcdSourcesecretSpec
switch scope {
case commonscope.ClusterScope:
sourcesecretSpec = spec.ConstructSpecForClusterScope(d)
case commonscope.ClusterGroupScope:
clusterGroupScopeSpec := spec.ConstructSpecForClusterGroupScope(d)
sourcesecretSpec = clusterGroupScopeSpec.AtomicSpec
}
atomicSpec.Data.Data = sourcesecretSpec.Data.Data
atomicSpec.Data.Type = sourcesecretSpec.Data.Type
atomicSpec.SourceSecretType = sourcesecretSpec.SourceSecretType
return true
}