-
-
Notifications
You must be signed in to change notification settings - Fork 998
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Pin tflint to
v0.50.3
(#3569)
* chore: Pin tflint to `v0.50.3` * fix: Renaming integration test file for units reading * fix: Addressing true positives in tflint test * fix: Adding missing variables set by Terragrunt * fix: Avoiding usage of deprecated config * Revert "fix: Adding missing variables set by Terragrunt" This reverts commit f95e137. * fix: Removing unused inputs * fix: Removing unused variable
- Loading branch information
Showing
8 changed files
with
45 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
config { | ||
module = true | ||
call_module_type = "all" | ||
} | ||
|
||
plugin "terraform" { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,11 @@ | ||
terraform { | ||
required_version = ">= 0.12" | ||
required_providers { | ||
null = { | ||
source = "hashicorp/null" | ||
version = ">= 3.2.3" | ||
} | ||
} | ||
} | ||
|
||
resource "null_resource" "dummy" {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,3 @@ terraform { | |
} | ||
} | ||
|
||
inputs = { | ||
aws_region = "us-west-2" | ||
env = "dev" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ terraform { | |
required_providers { | ||
random = { | ||
version = ">= 3.4.0" | ||
source = "hashicorp/random" | ||
} | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,3 @@ terraform { | |
} | ||
} | ||
|
||
inputs = { | ||
aws_region = "us-west-2" | ||
env = "dev" | ||
} |
File renamed without changes.