Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Clete2 committed Sep 6, 2023
2 parents 9e3b74d + d5540d1 commit 488e9f4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.0.1](https://github.com/StateFarmIns/terraform-aws-default-log-retention/compare/v1.0.0...v1.0.1) (2023-09-05)


### Bug Fixes

* 🐛 Fix a validation error in the client ([4a13406](https://github.com/StateFarmIns/terraform-aws-default-log-retention/commit/4a13406d2df22b89fb9823dd95d07d6497b012a4))

# 1.0.0 (2023-08-25)


Expand Down
Binary file modified dist/global_retention_setter/bootstrap
Binary file not shown.
Binary file modified dist/log_retention_setter/bootstrap
Binary file not shown.
4 changes: 2 additions & 2 deletions src/cloudwatch_logs_traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ impl DescribeLogGroups for CloudWatchLogs {
Ok(self
.client
.describe_log_groups()
.log_group_name_prefix(log_group_name_prefix.unwrap_or_default())
.next_token(next_token.unwrap_or_default())
.set_log_group_name_prefix(log_group_name_prefix)
.set_next_token(next_token)
.send()
.await?)
}
Expand Down

0 comments on commit 488e9f4

Please sign in to comment.