diff --git a/README.md b/README.md index b3b1904..88d96ab 100644 --- a/README.md +++ b/README.md @@ -9,14 +9,14 @@ -

+

Terraform module to create Lambda resource on AWS for sending notification when anything done from console in AWS.

- Terraform + Terraform Licence @@ -40,7 +40,7 @@


-We eat, drink, sleep and most importantly love **DevOps**. We are working towards strategies for standardizing architecture while ensuring security for the infrastructure. We are strong believer of the philosophy Bigger problems are always solved by breaking them into smaller manageable problems. Resonating with microservices architecture, it is considered best-practice to run database, cluster, storage in smaller connected yet manageable pieces within the infrastructure. +We eat, drink, sleep and most importantly love **DevOps**. We are working towards strategies for standardizing architecture while ensuring security for the infrastructure. We are strong believer of the philosophy Bigger problems are always solved by breaking them into smaller manageable problems. Resonating with microservices architecture, it is considered best-practice to run database, cluster, storage in smaller connected yet manageable pieces within the infrastructure. This module is basically combination of [Terraform open source](https://www.terraform.io/) and includes automatation tests and examples. It also helps to create and improve your infrastructure with minimalistic code instead of maintaining the whole infrastructure code yourself. @@ -51,9 +51,9 @@ We have [*fifty plus terraform modules*][terraform_modules]. A few of them are c ## Prerequisites -This module has a few dependencies: +This module has a few dependencies: -- [Terraform 0.12](https://learn.hashicorp.com/terraform/getting-started/install.html) +- [Terraform 0.13](https://learn.hashicorp.com/terraform/getting-started/install.html) - [Go](https://golang.org/doc/install) - [github.com/stretchr/testify/assert](https://github.com/stretchr/testify) - [github.com/gruntwork-io/terratest/modules/terraform](https://github.com/gruntwork-io/terratest) @@ -74,7 +74,8 @@ This module has a few dependencies: Here is an example of how you can use this module in your inventory structure: ```hcl module "cloudtrail-slack-notification" { - source = "git::https://github.com/clouddrove/terraform-aws-cloudtrail-slack-notification.git?ref=tags/0.12.2" + source = "clouddrove/cloudtrail-slack-notification/aws" + version = "0.13.0" name = "cloudtrail-slack-notification" application = "clouddrove" environment = "test" @@ -99,27 +100,28 @@ module "cloudtrail-slack-notification" { ## Inputs | Name | Description | Type | Default | Required | -|------|-------------|:----:|:-----:|:-----:| -| application | Lambda Application \(e.g. `cd` or `clouddrove`\). | string | `""` | no | -| bucket\_arn | S3 Bucket ARN. | string | `""` | no | -| bucket\_name | S3 Bucket Name. | string | `""` | no | -| enabled | Whether to create lambda function. | bool | `"false"` | no | -| environment | Lambda Environment \(e.g. `prod`, `dev`, `staging`\). | string | `""` | no | -| label\_order | Label order, e.g. `name`,`application`. | list | `` | no | -| name | Lambda Name \(e.g. `app` or `cluster`\). | string | `""` | no | -| variables | A map that defines environment variables for the Lambda function. | map | `` | no | +|------|-------------|------|---------|:--------:| +| application | Lambda Application (e.g. `cd` or `clouddrove`). | `string` | `""` | no | +| bucket\_arn | S3 Bucket ARN. | `string` | `""` | no | +| bucket\_name | S3 Bucket Name. | `string` | `""` | no | +| enabled | Whether to create lambda function. | `bool` | `false` | no | +| environment | Lambda Environment (e.g. `prod`, `dev`, `staging`). | `string` | `""` | no | +| label\_order | Label order, e.g. `name`,`application`. | `list` | `[]` | no | +| managedby | ManagedBy, eg 'CloudDrove' or 'AnmolNagpal'. | `string` | `"anmol@clouddrove.com"` | no | +| name | Lambda Name (e.g. `app` or `cluster`). | `string` | `""` | no | +| variables | A map that defines environment variables for the Lambda function. | `map` | `{}` | no | ## Outputs | Name | Description | |------|-------------| -| cloudtrail-slack-arn | The Amazon Resource Name \(ARN\) identifying your cloudtrail logs Lambda Function. | +| cloudtrail-slack-arn | The Amazon Resource Name (ARN) identifying your cloudtrail logs Lambda Function. | ## Testing -In this module testing is performed with [terratest](https://github.com/gruntwork-io/terratest) and it creates a small piece of infrastructure, matches the output like ARN, ID and Tags name etc and destroy infrastructure in your AWS account. This testing is written in GO, so you need a [GO environment](https://golang.org/doc/install) in your system. +In this module testing is performed with [terratest](https://github.com/gruntwork-io/terratest) and it creates a small piece of infrastructure, matches the output like ARN, ID and Tags name etc and destroy infrastructure in your AWS account. This testing is written in GO, so you need a [GO environment](https://golang.org/doc/install) in your system. You need to run the following command in the testing folder: ```hcl @@ -128,7 +130,7 @@ You need to run the following command in the testing folder: -## Feedback +## Feedback If you come accross a bug or have any feedback, please log it in our [issue tracker](https://github.com/clouddrove/terraform-aws-cloudtrail-slack-notification/issues), or feel free to drop us an email at [hello@clouddrove.com](mailto:hello@clouddrove.com). If you have found it worth your time, go ahead and give us a ★ on [our GitHub](https://github.com/clouddrove/terraform-aws-cloudtrail-slack-notification)!