-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathresource_tc_api_gateway_api_key.go
295 lines (254 loc) · 9.44 KB
/
resource_tc_api_gateway_api_key.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
package apigateway
import (
"context"
"fmt"
"log"
tccommon "github.com/tencentcloudstack/terraform-provider-tencentcloud/tencentcloud/common"
"github.com/tencentcloudstack/terraform-provider-tencentcloud/tencentcloud/internal/helper"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
apigateway "github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/apigateway/v20180808"
)
func ResourceTencentCloudAPIGatewayAPIKey() *schema.Resource {
return &schema.Resource{
Create: resourceTencentCloudAPIGatewayAPIKeyCreate,
Read: resourceTencentCloudAPIGatewayAPIKeyRead,
Update: resourceTencentCloudAPIGatewayAPIKeyUpdate,
Delete: resourceTencentCloudAPIGatewayAPIKeyDelete,
Importer: &schema.ResourceImporter{
State: schema.ImportStatePassthrough,
},
Schema: map[string]*schema.Schema{
"secret_name": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: "Custom key name.",
},
"status": {
Type: schema.TypeString,
Optional: true,
Default: API_GATEWAY_KEY_ENABLED,
ValidateFunc: tccommon.ValidateAllowedStringValue(API_GATEWAY_KEYS),
Description: "Key status. Valid values: `on`, `off`.",
},
"access_key_type": {
Optional: true,
Default: API_GATEWAY_KEY_TYPE_AUTO,
ValidateFunc: tccommon.ValidateAllowedStringValue(API_GATEWAY_KEYS_TYPE),
Type: schema.TypeString,
Description: "Key type, supports both auto and manual (custom keys), defaults to auto.",
},
"access_key_id": {
Optional: true,
Computed: true,
Type: schema.TypeString,
ValidateFunc: tccommon.ValidateStringLengthInRange(5, 50),
Description: "User defined key ID, required when access_key_type is manual. The length is 5-50 characters, consisting of letters, numbers, and English underscores.",
},
"access_key_secret": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ValidateFunc: tccommon.ValidateStringLengthInRange(10, 50),
Description: "The user-defined key must be passed when the access_key_type is manual. The length is 10-50 characters, consisting of letters, numbers, and English underscores.",
},
// Computed values.
"modify_time": {
Type: schema.TypeString,
Computed: true,
Description: "Last modified time in the format of YYYY-MM-DDThh:mm:ssZ according to ISO 8601 standard. UTC time is used.",
},
"create_time": {
Type: schema.TypeString,
Computed: true,
Description: "Creation time in the format of YYYY-MM-DDThh:mm:ssZ according to ISO 8601 standard. UTC time is used.",
},
},
}
}
func resourceTencentCloudAPIGatewayAPIKeyCreate(d *schema.ResourceData, meta interface{}) error {
defer tccommon.LogElapsed("resource.tencentcloud_api_gateway_api_key.create")()
var (
logId = tccommon.GetLogId(tccommon.ContextNil)
ctx = context.WithValue(context.TODO(), tccommon.LogIdKey, logId)
apiGatewayService = APIGatewayService{client: meta.(tccommon.ProviderMeta).GetAPIV3Conn()}
request = apigateway.NewCreateApiKeyRequest()
response = apigateway.NewCreateApiKeyResponse()
statusStr string
accessKeyType string
accessKeyId string
accessKeySecret string
)
if v, ok := d.GetOk("secret_name"); ok {
request.SecretName = helper.String(v.(string))
}
if v, ok := d.GetOk("status"); ok {
statusStr = v.(string)
}
if v, ok := d.GetOk("access_key_type"); ok {
request.AccessKeyType = helper.String(v.(string))
accessKeyType = v.(string)
}
if accessKeyType == API_GATEWAY_KEY_TYPE_MANUAL {
if v, ok := d.GetOk("access_key_id"); ok {
accessKeyId = v.(string)
}
if v, ok := d.GetOk("access_key_secret"); ok {
accessKeySecret = v.(string)
}
if accessKeyId == "" || accessKeySecret == "" {
errRet := fmt.Errorf("`access_key_id`, `access_key_secret` required when access_key_type is `manual`")
return errRet
}
request.AccessKeyId = &accessKeyId
request.AccessKeySecret = &accessKeySecret
}
err := resource.Retry(tccommon.WriteRetryTimeout, func() *resource.RetryError {
result, e := meta.(tccommon.ProviderMeta).GetAPIV3Conn().UseAPIGatewayClient().CreateApiKey(request)
if e != nil {
return tccommon.RetryError(e)
} else {
log.Printf("[DEBUG]%s api[%s] success, request body [%s], response body [%s]\n", logId, request.GetAction(), request.ToJsonString(), result.ToJsonString())
}
response = result
return nil
})
if err != nil {
log.Printf("[CRITAL]%s create apigateway apiKey failed, reason:%+v", logId, err)
return err
}
//set status to disable
if statusStr == API_GATEWAY_KEY_DISABLED {
if err = resource.Retry(tccommon.WriteRetryTimeout, func() *resource.RetryError {
if err = apiGatewayService.DisableApiKey(ctx, accessKeyId); err != nil {
return tccommon.RetryError(err)
}
return nil
}); err != nil {
return err
}
}
d.SetId(*response.Response.Result.AccessKeyId)
return resourceTencentCloudAPIGatewayAPIKeyRead(d, meta)
}
func resourceTencentCloudAPIGatewayAPIKeyRead(d *schema.ResourceData, meta interface{}) error {
defer tccommon.LogElapsed("resource.tencentcloud_api_gateway_api_key.read")()
defer tccommon.InconsistentCheck(d, meta)()
var (
logId = tccommon.GetLogId(tccommon.ContextNil)
ctx = context.WithValue(context.TODO(), tccommon.LogIdKey, logId)
apiGatewayService = APIGatewayService{client: meta.(tccommon.ProviderMeta).GetAPIV3Conn()}
accessKeyId = d.Id()
apiKey *apigateway.ApiKey
err error
has bool
)
if err = resource.Retry(tccommon.ReadRetryTimeout, func() *resource.RetryError {
apiKey, has, err = apiGatewayService.DescribeApiKey(ctx, accessKeyId)
if err != nil {
return tccommon.RetryError(err, tccommon.InternalError)
}
return nil
}); err != nil {
return err
}
if !has {
d.SetId("")
return nil
}
_ = d.Set("secret_name", apiKey.SecretName)
_ = d.Set("status", API_GATEWAY_KEY_INT2STRS[*apiKey.Status])
_ = d.Set("access_key_type", apiKey.AccessKeyType)
_ = d.Set("access_key_id", apiKey.AccessKeyId)
_ = d.Set("access_key_secret", apiKey.AccessKeySecret)
_ = d.Set("modify_time", apiKey.ModifiedTime)
_ = d.Set("create_time", apiKey.CreatedTime)
return nil
}
func resourceTencentCloudAPIGatewayAPIKeyUpdate(d *schema.ResourceData, meta interface{}) error {
defer tccommon.LogElapsed("resource.tencentcloud_api_gateway_api_key.update")()
var (
logId = tccommon.GetLogId(tccommon.ContextNil)
ctx = context.WithValue(context.TODO(), tccommon.LogIdKey, logId)
request = apigateway.NewUpdateApiKeyRequest()
apiGatewayService = APIGatewayService{client: meta.(tccommon.ProviderMeta).GetAPIV3Conn()}
accessKeyId = d.Id()
)
immutableFields := []string{"access_key_id", "access_key_type"}
for _, f := range immutableFields {
if d.HasChange(f) {
return fmt.Errorf("cannot update argument `%s`", f)
}
}
if d.HasChange("access_key_secret") {
if d.Get("access_key_type") == API_GATEWAY_KEY_TYPE_AUTO {
errRet := fmt.Errorf("`access_key_id`, `access_key_secret` updated when access_key_type is `auto`")
return errRet
}
request.AccessKeyId = &accessKeyId
if v, ok := d.GetOk("access_key_secret"); ok {
request.AccessKeySecret = helper.String(v.(string))
}
err := resource.Retry(tccommon.WriteRetryTimeout, func() *resource.RetryError {
result, e := meta.(tccommon.ProviderMeta).GetAPIV3Conn().UseAPIGatewayClient().UpdateApiKey(request)
if e != nil {
return tccommon.RetryError(e)
} else {
log.Printf("[DEBUG]%s api[%s] success, request body [%s], response body [%s]\n", logId, request.GetAction(), request.ToJsonString(), result.ToJsonString())
}
return nil
})
if err != nil {
log.Printf("[CRITAL]%s update apigateway apiKey failed, reason:%+v", logId, err)
return err
}
}
if d.HasChange("status") {
var (
statusStr = d.Get("status").(string)
err error
)
if err = resource.Retry(tccommon.WriteRetryTimeout, func() *resource.RetryError {
if statusStr == API_GATEWAY_KEY_DISABLED {
err = apiGatewayService.DisableApiKey(ctx, accessKeyId)
} else {
err = apiGatewayService.EnableApiKey(ctx, accessKeyId)
}
if err != nil {
return tccommon.RetryError(err)
}
return nil
}); err != nil {
return err
}
}
return resourceTencentCloudAPIGatewayAPIKeyRead(d, meta)
}
func resourceTencentCloudAPIGatewayAPIKeyDelete(d *schema.ResourceData, meta interface{}) error {
defer tccommon.LogElapsed("resource.tencentcloud_api_gateway_api_key.delete")()
var (
logId = tccommon.GetLogId(tccommon.ContextNil)
ctx = context.WithValue(context.TODO(), tccommon.LogIdKey, logId)
apiGatewayService = APIGatewayService{client: meta.(tccommon.ProviderMeta).GetAPIV3Conn()}
accessKeyId = d.Id()
)
//set status to disable before delete
if d.Get("status") != API_GATEWAY_KEY_DISABLED {
if err := resource.Retry(tccommon.WriteRetryTimeout, func() *resource.RetryError {
if err := apiGatewayService.DisableApiKey(ctx, accessKeyId); err != nil {
return tccommon.RetryError(err)
}
return nil
}); err != nil {
return err
}
}
return resource.Retry(tccommon.WriteRetryTimeout, func() *resource.RetryError {
inErr := apiGatewayService.DeleteApiKey(ctx, accessKeyId)
if inErr != nil {
return tccommon.RetryError(inErr)
}
return nil
})
}