File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,18 @@ resource "tencentcloud_cos_bucket" "mycos" {
1212}
1313```
1414
15+
16+ Creation of multiple available zone bucket
17+
18+ ```hcl
19+ resource "tencentcloud_cos_bucket" "mycos" {
20+ bucket = "mycos-1258798060"
21+ acl = "private"
22+ multi_az = true
23+ versioning_enable = true
24+ }
25+ ```
26+
1527Using verbose acl
1628```hcl
1729resource "tencentcloud_cos_bucket" "with_acl_body" {
Original file line number Diff line number Diff line change @@ -22,6 +22,17 @@ resource "tencentcloud_cos_bucket" "mycos" {
2222}
2323```
2424
25+ Creation of multiple available zone bucket
26+
27+ ``` hcl
28+ resource "tencentcloud_cos_bucket" "mycos" {
29+ bucket = "mycos-1258798060"
30+ acl = "private"
31+ multi_az = true
32+ versioning_enable = true
33+ }
34+ ```
35+
2536Using verbose acl
2637
2738``` hcl
You can’t perform that action at this time.
0 commit comments