Skip to content

Commit bccbd02

Browse files
Marcel JacekMarcel Jacek
authored andcommitted
update description
1 parent f592ec7 commit bccbd02

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/data-sources/objectstorage_bucket.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ data "stackit_objectstorage_bucket" "example" {
3434
### Read-Only
3535

3636
- `id` (String) Terraform's internal data source identifier. It is structured as "`project_id`,`region`,`name`".
37-
- `object_lock` (Boolean) Enable S3 Object Lock on this bucket. Can only be set at creation time. Requires an active project-level compliance lock.
37+
- `object_lock` (Boolean) Enable Object Lock on this bucket. Can only be set at creation time. Requires an active project-level compliance lock.
3838
- `url_path_style` (String)
3939
- `url_virtual_hosted_style` (String)

docs/resources/objectstorage_bucket.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import {
4848

4949
### Optional
5050

51-
- `object_lock` (Boolean) Enable S3 Object Lock on this bucket. Can only be set at creation time. Requires an active project-level compliance lock.
51+
- `object_lock` (Boolean) Enable Object Lock on this bucket. Can only be set at creation time. Requires an active project-level compliance lock.
5252
- `region` (String) The resource region. If not defined, the provider region is used.
5353

5454
### Read-Only

stackit/internal/services/objectstorage/bucket/datasource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func (r *bucketDataSource) Schema(_ context.Context, _ datasource.SchemaRequest,
6363
"id": "Terraform's internal data source identifier. It is structured as \"`project_id`,`region`,`name`\".",
6464
"name": "The bucket name. It must be DNS conform.",
6565
"project_id": "STACKIT Project ID to which the bucket is associated.",
66-
"object_lock": "Enable S3 Object Lock on this bucket. Can only be set at creation time. Requires an active project-level compliance lock.",
66+
"object_lock": "Enable Object Lock on this bucket. Can only be set at creation time. Requires an active project-level compliance lock.",
6767
"url_path_style": "URL in path style.",
6868
"url_virtual_hosted_style": "URL in virtual hosted style.",
6969
"region": "The resource region. If not defined, the provider region is used.",

stackit/internal/services/objectstorage/bucket/resource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ func (r *bucketResource) Schema(_ context.Context, _ resource.SchemaRequest, res
115115
"id": "Terraform's internal resource identifier. It is structured as \"`project_id`,`region`,`name`\".",
116116
"name": "The bucket name. It must be DNS conform.",
117117
"project_id": "STACKIT Project ID to which the bucket is associated.",
118-
"object_lock": "Enable S3 Object Lock on this bucket. Can only be set at creation time. Requires an active project-level compliance lock.",
118+
"object_lock": "Enable Object Lock on this bucket. Can only be set at creation time. Requires an active project-level compliance lock.",
119119
"url_path_style": "URL in path style.",
120120
"url_virtual_hosted_style": "URL in virtual hosted style.",
121121
"region": "The resource region. If not defined, the provider region is used.",

0 commit comments

Comments
 (0)