Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
add example usage
Browse files Browse the repository at this point in the history
  • Loading branch information
Puneeth-n committed Aug 26, 2019
1 parent 2dd5287 commit 0ba95e7
Showing 1 changed file with 34 additions and 2 deletions.
36 changes: 34 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,34 @@
# terraform-aws-firehose
Terraform AWS Kinesis Firehose module
# Terraform AWS module for AWS Kinesis Firehose

## Introduction

This module create a Kinesis Firehose and all the resources related to it to log to S3.

## Usage

```hcl
module "my_firehose" {
source = "github.com/comtravo/terraform-aws-firehose"
enable = 1
name = "test-firehose"
destination = "s3"
s3_configuration {
bucket_arn = "my_s3_bucket_arn"
buffer_interval = 60
prefix = "some-prefix/"
}
account_id = "0123456789012"
}
```

## Authors

Module managed by [Comtravo](https://github.com/comtravo).

## License

MIT Licensed. See LICENSE for full details.

0 comments on commit 0ba95e7

Please sign in to comment.