From 5d634060088d32135b46b673aacd7a73b70ae99a Mon Sep 17 00:00:00 2001 From: Akhil Dangore Date: Thu, 4 Sep 2025 16:13:40 +0530 Subject: [PATCH 1/7] Updated doc for tag support for awso related AWS resources using TF --- .../deploy-with-terraform.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md b/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md index 617d041953..e1b831402f 100644 --- a/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md +++ b/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md @@ -406,6 +406,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 #} ``` @@ -440,6 +441,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 } ``` @@ -462,6 +464,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" { @@ -472,7 +475,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 = { @@ -502,6 +506,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" { @@ -513,6 +518,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 = { @@ -530,6 +536,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 } ``` @@ -592,6 +599,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 } ``` @@ -623,6 +631,9 @@ module "collection-module" { } fields = {} } + aws_resource_tags = { + env = "prod" + } } ``` @@ -639,6 +650,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 } ``` From c573bf00143f0d68d5cf3aeb42de244134ac087e Mon Sep 17 00:00:00 2001 From: Akhil Dangore Date: Tue, 9 Sep 2025 15:24:21 +0530 Subject: [PATCH 2/7] Added note for aws_resource_tags --- .../deploy-with-terraform.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md b/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md index e1b831402f..1f48152d80 100644 --- a/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md +++ b/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md @@ -631,11 +631,15 @@ module "collection-module" { } fields = {} } - aws_resource_tags = { - env = "prod" - } + 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** From 72fb47a3691236e80dd04fbe20066bd02ad32389 Mon Sep 17 00:00:00 2001 From: Akhil Dangore Date: Wed, 10 Sep 2025 10:11:54 +0530 Subject: [PATCH 3/7] Addressed review comment --- .../aws/deploy-use-aws-observability/deploy-with-terraform.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md b/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md index 1f48152d80..d75e2acf71 100644 --- a/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md +++ b/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md @@ -638,7 +638,7 @@ module "collection-module" { } ``` :::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. +`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** From e06a94d3af2bf467a780fe6e4b6381b541b7b788 Mon Sep 17 00:00:00 2001 From: Akhil Dangore Date: Wed, 1 Oct 2025 14:19:26 +0530 Subject: [PATCH 4/7] Added note for GIS CloudTrail DevOps app is deprecated --- .../deploy-with-aws-cloudformation/index.md | 3 ++- .../deploy-use-aws-observability/deploy-with-terraform.md | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/observability/aws/deploy-use-aws-observability/deploy-with-aws-cloudformation/index.md b/docs/observability/aws/deploy-use-aws-observability/deploy-with-aws-cloudformation/index.md index d52228dc4c..b1358a9149 100644 --- a/docs/observability/aws/deploy-use-aws-observability/deploy-with-aws-cloudformation/index.md +++ b/docs/observability/aws/deploy-use-aws-observability/deploy-with-aws-cloudformation/index.md @@ -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-collector-name-and-source-categories) section. + - The Global Intelligence for AWS CloudTrail DevOps app is deprecated from CloudFormation template v2.13.0. A backup of this app will not be maintained during upgrades. ::: 1. Select the AWS Region where you want to deploy the AWS CloudFormation template. :::danger diff --git a/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md b/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md index d75e2acf71..2198ee8fa8 100644 --- a/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md +++ b/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md @@ -31,6 +31,11 @@ If you've previously set up our AWS Observability Solution with CloudFormation a ::: +:::note +The AWS Observability Solution no longer supports the Global Intelligence for AWS CloudTrail DevOps app, which is now deprecated. +::: + + For this setup, complete the following: 1. Set up the [AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html). From 59ca8a3d2e7161fb94e866e6006f2e235703da50 Mon Sep 17 00:00:00 2001 From: Akhil Dangore Date: Mon, 6 Oct 2025 16:01:09 +0530 Subject: [PATCH 5/7] Rephrased GIS CloudTrail DevOps notes --- .../deploy-with-aws-cloudformation/index.md | 2 +- .../aws/deploy-use-aws-observability/deploy-with-terraform.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/observability/aws/deploy-use-aws-observability/deploy-with-aws-cloudformation/index.md b/docs/observability/aws/deploy-use-aws-observability/deploy-with-aws-cloudformation/index.md index b1358a9149..94c1c23072 100644 --- a/docs/observability/aws/deploy-use-aws-observability/deploy-with-aws-cloudformation/index.md +++ b/docs/observability/aws/deploy-use-aws-observability/deploy-with-aws-cloudformation/index.md @@ -46,7 +46,7 @@ AWS Observability integrates with the [AWS Observability view](/docs/dashboards/ ::: :::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. - - The Global Intelligence for AWS CloudTrail DevOps app is deprecated from CloudFormation template v2.13.0. A backup of this app will not be maintained during upgrades. + - The Global Intelligence for AWS CloudTrail DevOps app has been deprecated and consequently removed from the AWS Observability Solution. Following this deprecation, the app will no longer be backed up or maintained during solution upgrades. ::: 1. Select the AWS Region where you want to deploy the AWS CloudFormation template. :::danger diff --git a/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md b/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md index 2198ee8fa8..38befaa335 100644 --- a/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md +++ b/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md @@ -32,7 +32,7 @@ If you've previously set up our AWS Observability Solution with CloudFormation a ::: :::note -The AWS Observability Solution no longer supports the Global Intelligence for AWS CloudTrail DevOps app, which is now deprecated. +The Global Intelligence for AWS CloudTrail DevOps app has been deprecated and consequently removed from the AWS Observability Solution. ::: From dab21a2809d6010f65cd4b98e0ad00f53e899899 Mon Sep 17 00:00:00 2001 From: Akhil Dangore Date: Tue, 7 Oct 2025 11:05:28 +0530 Subject: [PATCH 6/7] Rephrased GIS CloudTrail DevOps notes --- .../deploy-with-aws-cloudformation/index.md | 4 ++-- .../aws/deploy-use-aws-observability/deploy-with-terraform.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/observability/aws/deploy-use-aws-observability/deploy-with-aws-cloudformation/index.md b/docs/observability/aws/deploy-use-aws-observability/deploy-with-aws-cloudformation/index.md index 94c1c23072..45282b8937 100644 --- a/docs/observability/aws/deploy-use-aws-observability/deploy-with-aws-cloudformation/index.md +++ b/docs/observability/aws/deploy-use-aws-observability/deploy-with-aws-cloudformation/index.md @@ -45,8 +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. - - The Global Intelligence for AWS CloudTrail DevOps app has been deprecated and consequently removed from the AWS Observability Solution. Following this deprecation, the app will no longer be backed up or maintained during solution upgrades. + - 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) 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 diff --git a/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md b/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md index 38befaa335..ab1bd54f1f 100644 --- a/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md +++ b/docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md @@ -32,7 +32,7 @@ If you've previously set up our AWS Observability Solution with CloudFormation a ::: :::note -The Global Intelligence for AWS CloudTrail DevOps app has been deprecated and consequently removed from the AWS Observability Solution. +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. ::: From 47a8b0f39faabbfd09ed4c0839bbca4a03ee232a Mon Sep 17 00:00:00 2001 From: Amee Lepcha Date: Tue, 7 Oct 2025 18:47:03 +0530 Subject: [PATCH 7/7] Update index.md --- .../deploy-with-aws-cloudformation/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/observability/aws/deploy-use-aws-observability/deploy-with-aws-cloudformation/index.md b/docs/observability/aws/deploy-use-aws-observability/deploy-with-aws-cloudformation/index.md index 45282b8937..9ffcf2bb71 100644 --- a/docs/observability/aws/deploy-use-aws-observability/deploy-with-aws-cloudformation/index.md +++ b/docs/observability/aws/deploy-use-aws-observability/deploy-with-aws-cloudformation/index.md @@ -45,7 +45,7 @@ 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 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.