Skip to content

Commit

Permalink
Terraform fmt README.md for module
Browse files Browse the repository at this point in the history
  • Loading branch information
pecigonzalo committed Oct 7, 2024
1 parent 8428706 commit a4f9a24
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions modules/forwarder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ Forward logs from AWS Cloudwatch to Axiom.

```hcl
module "forwarder" {
source = "https://github.com/axiomhq/axiom-cloudwatch-forwarder/tree/main/modules/forwarder"
prefix = "axiom-cloudwatch-forwarder"
axiom_dataset = "DATASET_NAME"
axiom_token = "xaat-***"
source = "https://github.com/axiomhq/axiom-cloudwatch-forwarder/tree/main/modules/forwarder"
prefix = "axiom-cloudwatch-forwarder"
axiom_dataset = "DATASET_NAME"
axiom_token = "xaat-***"
}
```
4 changes: 2 additions & 2 deletions modules/listener/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ This module sets up a lambda function that listens to Cloudwatch logs and subscr

```hcl
module "listener" {
source = "https://github.com/axiomhq/axiom-cloudwatch-forwarder/tree/main/modules/listener"
prefix = "axiom-cloudwatch-forwarder"
source = "https://github.com/axiomhq/axiom-cloudwatch-forwarder/tree/main/modules/listener"
prefix = "axiom-cloudwatch-forwarder"
forwarder_lambda_arn = module.forwarder.lambda_arn
log_groups_prefix = "/aws/lambda/"
}
Expand Down
6 changes: 3 additions & 3 deletions modules/subscriber/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ Creates a Lambda function that subscribers the Forwarder to AWS Cloudwatch log g

```hcl
module "subscriber" {
source = "https://github.com/axiomhq/axiom-cloudwatch-forwarder/tree/main/modules/subscriber"
prefix = "axiom-cloudwatch-forwarder"
axiom_dataset = "DATASET_NAME"
source = "https://github.com/axiomhq/axiom-cloudwatch-forwarder/tree/main/modules/subscriber"
prefix = "axiom-cloudwatch-forwarder"
axiom_dataset = "DATASET_NAME"
log_groups_prefix = "/aws/lambda/"
forwarder_lambda_arn = module.forwarder.lambda_arn
}
Expand Down
4 changes: 2 additions & 2 deletions modules/unsubscriber/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Creates a Lambda function that removes log groups subscriptions from the Forward

```hcl
module "unsubscriber" {
source = "https://github.com/axiomhq/axiom-cloudwatch-forwarder/tree/main/modules/unsubscriber"
prefix = "axiom-cloudwatch-forwarder"
source = "https://github.com/axiomhq/axiom-cloudwatch-forwarder/tree/main/modules/unsubscriber"
prefix = "axiom-cloudwatch-forwarder"
log_groups_prefix = "/aws/lambda/"
forwarder_lambda_arn = module.forwarder.lambda_arn
}
Expand Down

0 comments on commit a4f9a24

Please sign in to comment.