An open API service indexing awesome lists of open source software.

https://github.com/lunik/terraform-aws-s3

Create and configure basic AWS S3 bucket using Terraform.
https://github.com/lunik/terraform-aws-s3

aws s3 terraform terraform-module

Last synced: 3 months ago
JSON representation

Create and configure basic AWS S3 bucket using Terraform.

Awesome Lists containing this project

README

          

# Terraform AWS S3 module

## Purpose

Create and configure basic AWS S3 bucket.

## Usage

[In and Out documentation](./DOCS.md)

```
module "aws_s3" {
source = "https:///terraform_aws_route53.git"

bucket_name = "my-bucket"
}
```

## Contribute

### Generate documentation

The documentation was generated using [terraform-docs tool](https://github.com/terraform-docs/terraform-docs).
The generation command is the following :

```
$ terraform-docs markdown table . > DOCS.md
```