Skip to content

Commit

Permalink
OPS-6322 Fix default values for S3 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
snovikov authored Nov 7, 2024
1 parent 45500cf commit b5303c9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Type:
object({
bucket_arn = string
bucket_owner_account_id = optional(string)
inclusion_prefixes = optional(set(string), [])
inclusion_prefixes = optional(set(string))
})
```

Expand Down
2 changes: 1 addition & 1 deletion examples/simple/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ No resources.

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_s3_configuration"></a> [s3\_configuration](#input\_s3\_configuration) | ARN of S3 bucket with data | <pre>object({<br> bucket_arn = string<br> bucket_owner_account_id = optional(string)<br> inclusion_prefixes = optional(set(string), [])<br> })</pre> | n/a | yes |
| <a name="input_s3_configuration"></a> [s3\_configuration](#input\_s3\_configuration) | ARN of S3 bucket with data | <pre>object({<br> bucket_arn = string<br> bucket_owner_account_id = optional(string)<br> inclusion_prefixes = optional(set(string))<br> })</pre> | n/a | yes |
| <a name="input_oss_additional_roles_arns"></a> [oss\_additional\_roles\_arns](#input\_oss\_additional\_roles\_arns) | Additional ARNs of roles to access OpenSearch | `list(string)` | `[]` | no |

## Outputs
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ variable "s3_configuration" {
type = object({
bucket_arn = string
bucket_owner_account_id = optional(string)
inclusion_prefixes = optional(set(string), [])
inclusion_prefixes = optional(set(string))
})
}

Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ variable "s3_configuration" {
type = object({
bucket_arn = string
bucket_owner_account_id = optional(string)
inclusion_prefixes = optional(set(string), [])
inclusion_prefixes = optional(set(string))
})
}

Expand Down

0 comments on commit b5303c9

Please sign in to comment.