Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ AWS Observability integrates with the [AWS Observability view](/docs/dashboards/
Download this or other versions of this template from [Changelog](../changelog.md). 
:::
:::note
To change the Collector Name and Source Categories of Sumo Logic sources, you must download CloudFormation template version 2.1.0 or greater and follow the instructions in the (#modify-the-collector-name-and-source-categories) section.
- To change the Collector Name and Source Categories of Sumo Logic sources, you must download CloudFormation template version 2.1.0 or greater and follow the instructions in the [Modify the source categories](#modify-the-source-categories) section.
- The Global Intelligence for AWS CloudTrail DevOps app is planned for deprecation in the near future and has therefore been removed from the AWS Observability Solution. With this removal, the app will no longer be backed up or maintained during future solution upgrades.
:::
1. Select the AWS Region where you want to deploy the AWS CloudFormation template.
:::danger
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ If you've previously set up our AWS Observability Solution with CloudFormation a

:::

:::note
The Global Intelligence for AWS CloudTrail DevOps app is planned for deprecation in the near future and has therefore been removed from the AWS Observability Solution. With this removal, the app will no longer be backed up or maintained during future solution upgrades.
:::


For this setup, complete the following:

1. Set up the [AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html).
Expand Down Expand Up @@ -406,6 +411,7 @@ Configure providers for collection using the Terraform source-module.
# access_id = var.sumologic_access_id
# access_key = var.sumologic_access_key
# environment = var.sumologic_environment
# aws_resource_tags = var.aws_resource_tags
#}
```

Expand Down Expand Up @@ -440,6 +446,7 @@ Configure providers for collection using the Terraform source-module.
access_id = var.sumologic_access_id
access_key = var.sumologic_access_key
environment = var.sumologic_environment
aws_resource_tags = var.aws_resource_tags

}
```
Expand All @@ -462,6 +469,7 @@ module "production-us-east-1" {
access_id = var.sumologic_access_id
access_key = var.sumologic_access_key
environment = var.sumologic_environment
aws_resource_tags = var.aws_resource_tags
}

module "production-us-east-2" {
Expand All @@ -472,7 +480,8 @@ module "production-us-east-2" {
sumologic_organization_id = var.sumologic_organization_id
access_id = var.sumologic_access_id
access_key = var.sumologic_access_key
environment = var.sumologic_environment
environment = var.sumologic_environment
aws_resource_tags = var.aws_resource_tags

# Use the same collector created for the first region of the production account.
sumologic_existing_collector_details = {
Expand Down Expand Up @@ -502,6 +511,7 @@ module "production-us-east-1" {
access_id = var.sumologic_access_id
access_key = var.sumologic_access_key
environment = var.sumologic_environment
aws_resource_tags = var.aws_resource_tags
}

module "production-us-east-2" {
Expand All @@ -513,6 +523,7 @@ module "production-us-east-2" {
access_id = var.sumologic_access_id
access_key = var.sumologic_access_key
environment = var.sumologic_environment
aws_resource_tags = var.aws_resource_tags

# Use the same collector created for the first region of the production account.
sumologic_existing_collector_details = {
Expand All @@ -530,6 +541,7 @@ module "development-us-west-1" {
access_id = var.sumologic_access_id
access_key = var.sumologic_access_key
environment = var.sumologic_environment
aws_resource_tags = var.aws_resource_tags
}
```

Expand Down Expand Up @@ -592,6 +604,7 @@ module "collection-module" {
access_id = var.sumologic_access_id
access_key = var.sumologic_access_key
environment = var.sumologic_environment
aws_resource_tags = var.aws_resource_tags
}
```

Expand Down Expand Up @@ -623,8 +636,15 @@ module "collection-module" {
}
fields = {}
}
aws_resource_tags = {
env = "prod"
author = "sumologic"
}
}
```
:::note
`aws_resource_tags` is a map of tags that will be applied to all AWS resources provisioned through the AWS Observability Solution, except for SAM nested sources, which are not tagged.
:::

**Override Example 2: Override the auto_enable_access_logs parameter**

Expand All @@ -639,6 +659,7 @@ module "collection-module" {
access_key = var.sumologic_access_key
environment = var.sumologic_environment
auto_enable_access_logs = None
aws_resource_tags = var.aws_resource_tags
}
```

Expand Down