File tree 6 files changed +45
-7
lines changed
6 files changed +45
-7
lines changed Original file line number Diff line number Diff line change 1
1
repos :
2
2
- repo : https://github.com/antonbabenko/pre-commit-terraform
3
- rev : v1.88.4
3
+ rev : v1.90.0
4
4
hooks :
5
5
- id : terraform_fmt
6
6
- id : terraform_wrapper_module_for_each
Original file line number Diff line number Diff line change @@ -201,7 +201,9 @@ resource "aws_ecs_service" "this" {
201
201
delete = try (var. timeouts . delete , null )
202
202
}
203
203
204
- depends_on = [aws_iam_role_policy_attachment . service ]
204
+ depends_on = [
205
+ aws_iam_role_policy_attachment . service
206
+ ]
205
207
206
208
lifecycle {
207
209
ignore_changes = [
@@ -387,7 +389,9 @@ resource "aws_ecs_service" "ignore_task_definition" {
387
389
delete = try (var. timeouts . delete , null )
388
390
}
389
391
390
- depends_on = [aws_iam_role_policy_attachment . service ]
392
+ depends_on = [
393
+ aws_iam_role_policy_attachment . service
394
+ ]
391
395
392
396
lifecycle {
393
397
ignore_changes = [
@@ -736,6 +740,12 @@ resource "aws_ecs_task_definition" "this" {
736
740
737
741
tags = merge (var. tags , var. task_tags )
738
742
743
+ depends_on = [
744
+ aws_iam_role_policy_attachment . tasks ,
745
+ aws_iam_role_policy_attachment . task_exec ,
746
+ aws_iam_role_policy_attachment . task_exec_additional ,
747
+ ]
748
+
739
749
lifecycle {
740
750
create_before_destroy = true
741
751
}
Original file line number Diff line number Diff line change 1
1
terraform {
2
- required_version = " >= 0.13.1"
2
+ required_version = " >= 1.0"
3
+
4
+ required_providers {
5
+ aws = {
6
+ source = " hashicorp/aws"
7
+ version = " >= 4.66.1"
8
+ }
9
+ }
3
10
}
Original file line number Diff line number Diff line change 1
1
terraform {
2
- required_version = " >= 0.13.1"
2
+ required_version = " >= 1.0"
3
+
4
+ required_providers {
5
+ aws = {
6
+ source = " hashicorp/aws"
7
+ version = " >= 4.66.1"
8
+ }
9
+ }
3
10
}
Original file line number Diff line number Diff line change 1
1
terraform {
2
- required_version = " >= 0.13.1"
2
+ required_version = " >= 1.0"
3
+
4
+ required_providers {
5
+ aws = {
6
+ source = " hashicorp/aws"
7
+ version = " >= 4.66.1"
8
+ }
9
+ }
3
10
}
Original file line number Diff line number Diff line change 1
1
terraform {
2
- required_version = " >= 0.13.1"
2
+ required_version = " >= 1.0"
3
+
4
+ required_providers {
5
+ aws = {
6
+ source = " hashicorp/aws"
7
+ version = " >= 4.66.1"
8
+ }
9
+ }
3
10
}
You can’t perform that action at this time.
0 commit comments