## Requirements | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.3.1 | | [aws](#requirement\_aws) | >= 4.10.0 | ## Providers | Name | Version | |------|---------| | [aws](#provider\_aws) | 4.38.0 | ## Modules No modules. ## Resources | Name | Type | |------|------| | [aws_s3_bucket.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket) | resource | | [aws_s3_bucket_acl.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket_acl) | resource | | [aws_s3_bucket_logging.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket_logging) | resource | | [aws_s3_bucket_policy.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket_policy) | resource | | [aws_s3_bucket_website_configuration.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket_website_configuration) | resource | | [aws_s3_object.index](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_object) | resource | | [aws_s3_object.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_object) | resource | | [aws_iam_policy_document.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_policy_document) | data source | ## Inputs | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| | [block\_public\_access](#input\_block\_public\_access) | Determines the S3 account-level Public Access Block configuration. | `bool` | `true` | no | | [bucket\_acl](#input\_bucket\_acl) | The canned ACL to apply. Valid values are private, public-read, public-read-write, aws-exec-read, authenticated-read, and log-delivery-write. Defaults to private. | `string` | `"private"` | no | | [bucket\_name](#input\_bucket\_name) | The name of the bucket. Must be less than or equal to 63 characters in length. | `string` | n/a | yes | | [content](#input\_content) | Website bucket content. | `string` | n/a | yes | | [objects](#input\_objects) | Map of objects to upload to the bucket. | `map(any)` | `{}` | no | | [type](#input\_type) | Determines the type of the bucket. 1 for static website and 2 for logs. | `number` | `1` | no | | [website](#input\_website) | Map that defines the configuration of the website. | `map(any)` | `{}` | no | | [website\_id](#input\_website\_id) | Website bucket ID. | `string` | n/a | yes | ## Outputs | Name | Description | |------|-------------| | [arn](#output\_arn) | The ARN of the bucket. Will be of format arn:aws:s3:::bucketname. | | [id](#output\_id) | The bucket domain name. Will be of format bucketname.s3.amazonaws.com. | | [website\_endpoint](#output\_website\_endpoint) | The website endpoint, if the bucket is configured with a website. If not, this will be an empty string. |