From 3964cb385d7dd10f6e079a1df7708c260892990f Mon Sep 17 00:00:00 2001
From: Luke van der Hoeven <hi@plukevdh.me>
Date: Wed, 17 May 2023 10:29:51 -0400
Subject: [PATCH 1/2] feat: Prefix the CloudWatch Log group name with 
 `/aws/vendedlogs/states/` (#52)

Co-authored-by: noel.jorden@highwing.io
---
 main.tf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main.tf b/main.tf
index 5d29f28..851cf02 100644
--- a/main.tf
+++ b/main.tf
@@ -307,7 +307,7 @@ data "aws_cloudwatch_log_group" "sfn" {
 resource "aws_cloudwatch_log_group" "sfn" {
   count = var.create && local.enable_logging && !var.use_existing_cloudwatch_log_group ? 1 : 0
 
-  name              = coalesce(var.cloudwatch_log_group_name, var.name)
+  name              = coalesce(var.cloudwatch_log_group_name, "/aws/vendedlogs/states/${var.name}")
   retention_in_days = var.cloudwatch_log_group_retention_in_days
   kms_key_id        = var.cloudwatch_log_group_kms_key_id
 

From f74436b8eeb84bc07ff45cb4011ab17f51fa7f97 Mon Sep 17 00:00:00 2001
From: semantic-release-bot <semantic-release-bot@martynus.net>
Date: Wed, 17 May 2023 14:30:19 +0000
Subject: [PATCH 2/2] chore(release): version 3.1.0 [skip ci]

## [3.1.0](https://github.com/terraform-aws-modules/terraform-aws-step-functions/compare/v3.0.0...v3.1.0) (2023-05-17)

### Features

* Prefix the CloudWatch Log group name with  `/aws/vendedlogs/states/` ([#52](https://github.com/terraform-aws-modules/terraform-aws-step-functions/issues/52)) ([3964cb3](https://github.com/terraform-aws-modules/terraform-aws-step-functions/commit/3964cb385d7dd10f6e079a1df7708c260892990f))
---
 CHANGELOG.md | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index acaf97c..4a38415 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,13 @@
 
 All notable changes to this project will be documented in this file.
 
+## [3.1.0](https://github.com/terraform-aws-modules/terraform-aws-step-functions/compare/v3.0.0...v3.1.0) (2023-05-17)
+
+
+### Features
+
+* Prefix the CloudWatch Log group name with  `/aws/vendedlogs/states/` ([#52](https://github.com/terraform-aws-modules/terraform-aws-step-functions/issues/52)) ([3964cb3](https://github.com/terraform-aws-modules/terraform-aws-step-functions/commit/3964cb385d7dd10f6e079a1df7708c260892990f))
+
 ## [3.0.0](https://github.com/terraform-aws-modules/terraform-aws-step-functions/compare/v2.8.0...v3.0.0) (2023-05-08)