Skip to content

Commit

Permalink
doc: fix s3 resource name in examples (#627)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabii547 authored Jul 31, 2024
1 parent de066b1 commit f37856d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/data-sources/s3_bucket.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ When this happens, please refine your search string so that it is specific enoug

```hcl
data "ionosclud_s3_bucket" "example" {
data "ionoscloud_s3_bucket" "example" {
name = "example"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/s3_bucket_policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ When this happens, please refine your search string so that it is specific enoug

```hcl
data "ionosclud_s3_bucket_policy" "example" {
data "ionoscloud_s3_bucket_policy" "example" {
bucket = "example"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/s3_object.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ When this happens, please refine your search string so that it is specific enoug

```hcl
data "ionosclud_s3_object" "example" {
data "ionoscloud_s3_object" "example" {
bucket = "example"
key = "object"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/s3_bucket.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Manages **S3 Buckets** on IonosCloud.

```hcl
resource "ionosclud_s3_bucket" "example" {
resource "ionoscloud_s3_bucket" "example" {
name = "example"
region = "eu-central-3"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/s3_bucket_policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Manages **S3 Buckets policies** on IonosCloud.

```hcl
resource "ionosclud_s3_bucket_policy" "example" {
resource "ionoscloud_s3_bucket_policy" "example" {
bucket = "example"
policy = jsonencode({
Version = "2012-10-17"
Expand Down
4 changes: 2 additions & 2 deletions docs/resources/s3_object.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Manages **S3 Objects** on IonosCloud.

```hcl
resource "ionosclud_s3_object" "example" {
resource "ionoscloud_s3_object" "example" {
bucket = "example"
key = "object"
content = "body"
Expand All @@ -37,7 +37,7 @@ resource "ionosclud_s3_object" "example" {
}
}
resource "ionosclud_s3_object" "example" {
resource "ionoscloud_s3_object" "example" {
bucket = "example"
key = "object"
source = "path/to/file"
Expand Down

0 comments on commit f37856d

Please sign in to comment.