Skip to content

Commit 957a6fb

Browse files
DEVOPS-3237 Updated to work with Terraform AWS provider 6.0 (#76)
Signed-off-by: Mohammed Alkatheeri <[email protected]>
1 parent dcdffa0 commit 957a6fb

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v5.0.0
3+
rev: v6.0.0
44
hooks:
55
- id: check-added-large-files
66
args: ['--maxkb=500']
@@ -18,7 +18,7 @@ repos:
1818
args: ['--allow-missing-credentials']
1919
- id: trailing-whitespace
2020
- repo: https://github.com/antonbabenko/pre-commit-terraform
21-
rev: v1.96.2
21+
rev: v1.100.0
2222
hooks:
2323
- id: terraform_fmt
2424
- id: terraform_docs

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ All notable changes to this project will be documented in this file.
55
<a name="unreleased"></a>
66
## [Unreleased]
77

8-
- Added dynamic block for cloudwatch alarms
8+
9+
10+
<a name="8.1.0"></a>
11+
## [8.1.0] - 2024-12-18
12+
13+
- Added dynamic block for cloudwatch alarms ([#75](https://github.com/umotif-public/terraform-aws-ecs-fargate/issues/75))
914

1015

1116
<a name="8.0.0"></a>
@@ -282,7 +287,8 @@ All notable changes to this project will be documented in this file.
282287
- Initial commit
283288

284289

285-
[Unreleased]: https://github.com/umotif-public/terraform-aws-ecs-fargate/compare/8.0.0...HEAD
290+
[Unreleased]: https://github.com/umotif-public/terraform-aws-ecs-fargate/compare/8.1.0...HEAD
291+
[8.1.0]: https://github.com/umotif-public/terraform-aws-ecs-fargate/compare/8.0.0...8.1.0
286292
[8.0.0]: https://github.com/umotif-public/terraform-aws-ecs-fargate/compare/7.0.0...8.0.0
287293
[7.0.0]: https://github.com/umotif-public/terraform-aws-ecs-fargate/compare/6.7.1...7.0.0
288294
[6.7.1]: https://github.com/umotif-public/terraform-aws-ecs-fargate/compare/6.7.0...6.7.1

examples/core/versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
terraform {
2-
required_version = "1.0.11"
2+
required_version = "1.12.2"
33

44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = "~> 5"
7+
version = "~> 6"
88
}
99
}
1010
}

locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ locals {
3535
"logDriver": "awslogs",
3636
"options": {
3737
"awslogs-group": "${aws_cloudwatch_log_group.main[0].name}",
38-
"awslogs-region": "${data.aws_region.current.name}",
38+
"awslogs-region": "${data.aws_region.current.id}",
3939
"awslogs-stream-prefix": "container"
4040
}
4141
}

0 commit comments

Comments
 (0)