We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
tencentcloud_cos_buckets
1 parent 97e09de commit 92a0c17Copy full SHA for 92a0c17
.changelog/3268.txt
@@ -0,0 +1,3 @@
1
+```release-note:enhancement
2
+resource/tencentcloud_cos_buckets: Fix the issue of query errors
3
+```
tencentcloud/services/cos/data_source_tc_cos_buckets.go
@@ -261,8 +261,11 @@ func DataSourceTencentCloudCosBuckets() *schema.Resource {
261
// Description: "",
262
//},
263
"follow_http_headers": {
264
- Type: schema.TypeList,
265
- Optional: true,
+ Type: schema.TypeSet,
+ Optional: true,
266
+ Set: func(i interface{}) int {
267
+ return helper.HashString(i.(string))
268
+ },
269
Description: "Specifies the pass through headers when accessing the origin server.",
270
Elem: &schema.Schema{Type: schema.TypeString},
271
},
0 commit comments