File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Expand file tree Collapse file tree 3 files changed +12
-4
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.89.0
4
4
hooks :
5
5
- id : terraform_fmt
6
6
- id : terraform_wrapper_module_for_each
@@ -22,10 +22,9 @@ repos:
22
22
- ' --args=--only=terraform_required_providers'
23
23
- ' --args=--only=terraform_standard_module_structure'
24
24
- ' --args=--only=terraform_workspace_remote'
25
- - ' --args=--only=terraform_unused_required_providers'
26
25
- id : terraform_validate
27
26
- repo : https://github.com/pre-commit/pre-commit-hooks
28
- rev : v4.5 .0
27
+ rev : v4.6 .0
29
28
hooks :
30
29
- id : check-merge-conflict
31
30
- id : end-of-file-fixer
Original file line number Diff line number Diff line change @@ -238,6 +238,8 @@ resource "aws_ecrpublic_repository" "this" {
238
238
usage_text = try (catalog_data. value . usage_text , null )
239
239
}
240
240
}
241
+
242
+ tags = var. tags
241
243
}
242
244
243
245
# ###############################################################################
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 = " >= 5.37"
8
+ }
9
+ }
3
10
}
You can’t perform that action at this time.
0 commit comments