Skip to content

Commit c17b4b6

Browse files
Fix mistake in policy (#38)
* Fix mistake in policy * Auto Format --------- Co-authored-by: cloudpossebot <[email protected]>
1 parent a3f1f45 commit c17b4b6

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/auto-release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ version-resolver:
1717
- 'bugfix'
1818
- 'bug'
1919
- 'hotfix'
20-
- 'no-release'
2120
default: 'minor'
2221

2322
categories:

.github/workflows/validate-codeowners.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
steps:
1111
- name: "Checkout source code at current commit"
1212
uses: actions/checkout@v2
13+
# Leave pinned at 0.7.1 until https://github.com/mszostok/codeowners-validator/issues/173 is resolved
1314
- uses: mszostok/[email protected]
1415
if: github.event.pull_request.head.repo.full_name == github.repository
1516
name: "Full check of CODEOWNERS"

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.
300300

301301
## Copyright
302302

303-
Copyright © 2017-2022 [Cloud Posse, LLC](https://cpco.io/copyright)
303+
Copyright © 2017-2023 [Cloud Posse, LLC](https://cpco.io/copyright)
304304

305305

306306

@@ -375,7 +375,7 @@ Check out [our other projects][github], [follow us on twitter][twitter], [apply
375375

376376
[![README Footer][readme_footer_img]][readme_footer_link]
377377
[![Beacon][beacon]][website]
378-
378+
<!-- markdownlint-disable -->
379379
[logo]: https://cloudposse.com/logo-300x69.svg
380380
[docs]: https://cpco.io/docs?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/terraform-aws-cloudwatch-logs&utm_content=docs
381381
[website]: https://cpco.io/homepage?utm_source=github&utm_medium=readme&utm_campaign=cloudposse/terraform-aws-cloudwatch-logs&utm_content=website
@@ -406,3 +406,4 @@ Check out [our other projects][github], [follow us on twitter][twitter], [apply
406406
[share_googleplus]: https://plus.google.com/share?url=https://github.com/cloudposse/terraform-aws-cloudwatch-logs
407407
[share_email]: mailto:?subject=terraform-aws-cloudwatch-logs&body=https://github.com/cloudposse/terraform-aws-cloudwatch-logs
408408
[beacon]: https://ga-beacon.cloudposse.com/UA-76589703-4/cloudposse/terraform-aws-cloudwatch-logs?pixel&cs=github&cm=readme&an=terraform-aws-cloudwatch-logs
409+
<!-- markdownlint-restore -->

iam.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ data "aws_iam_policy_document" "log_agent" {
5252
actions = var.additional_permissions
5353

5454
resources = [
55-
join("", aws_cloudwatch_log_group.default.*.arn),
55+
"${join("", aws_cloudwatch_log_group.default.*.arn)}:*",
5656
]
5757
}
5858
}

0 commit comments

Comments
 (0)