Terraform simplifies the manner we deploy our infrastructure and allows us to maintain it as code.

Using our Terraform Modules, you can easily install and manage Coralogix integrations with AWS services as modules in your infrastructure code.

Our modules are open source and available on our [GitHub](https://github.com/coralogix/terraform-coralogix-aws/blob/master/modules/coralogix-aws-shipper/README.md) and in the [Terraform Registry](https://registry.terraform.io/modules/coralogix/aws/coralogix/latest).

## Installation

This module will be installing [our Cloudwatch collection lambda](https://coralogix.com/docs/integrations/aws/aws-cloudwatch/aws-cloudwatch-data-collection-options/index.md).

**STEP 1**. Add this declaration to your Terraform project.

```tf
provider "aws" {
}
module "coralogix-shipper-cloudwatch" {
  source = "coralogix/aws/coralogix//modules/coralogix-aws-shipper"

  coralogix_region   = "EU1"
  integration_type   = "CloudWatch"
  api_key            = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXX"
  application_name   = "cloudwatch-logs"
  subsystem_name     = "logs"
  log_groups         = ["log_gruop"]
}
```

**Notes**:

- Input your Coralogix [Send-Your-Data API key](https://coralogix.com/docs/user-guides/account-management/api-keys/send-your-data-api-key/index.md) as `api_key`.
- Input [region](https://coralogix.com/docs/user-guides/account-management/account-settings/coralogix-domain/index.md) (as `coralogix_region`) associated with your Coralogix account.

**STEP 2**. Execute the following:

```bash
terraform init
terraform plan
terraform apply
```

**STEP 3**. Run `terraform destroy` when you no longer need these resources.

## Additional Resources

|                        |                                                                                                                                                                                                     |
| ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Documentation          | [Coralogix Terraform Provider](https://coralogix.com/docs/developer-portal/infrastructure-as-code/terraform-provider/coralogix-terraform-provider/index.md)                                         |
| External Documentation | [GitHub](https://github.com/coralogix/terraform-coralogix-aws/tree/master/modules/coralogix-aws-shipper) [Terraform Registry](https://registry.terraform.io/modules/coralogix/aws/coralogix/latest) |

## **Support**

**Need help?**

Our world-class customer success team is available 24/7 to walk you through your setup and answer any questions that may come up.

Feel free to reach out to us **via our in-app chat** or by sending us an email at **[support@coralogix.com](mailto:support@coralogix.com)**.
