File tree 3 files changed +8
-1
lines changed
3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 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
27
rev : v4.6.0
Original file line number Diff line number Diff line change @@ -160,6 +160,7 @@ module "ecs" {
160
160
| Name | Version |
161
161
| ------| ---------|
162
162
| <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 1.0 |
163
+ | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 4.66.1 |
163
164
164
165
## Providers
165
166
Original file line number Diff line number Diff line change 1
1
terraform {
2
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