-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing output and additional TFLint rules (#18)
* Add additional TFLint rules Signed-off-by: Roman Schwarz <[email protected]> * Add missing variable an output descriptions Signed-off-by: Roman Schwarz <[email protected]> * Access attributes on specific instance Signed-off-by: Roman Schwarz <[email protected]> * Fix `image` output Signed-off-by: Roman Schwarz <[email protected]> * Add dedicated TFLint config file for test modules Signed-off-by: Roman Schwarz <[email protected]> --------- Signed-off-by: Roman Schwarz <[email protected]>
- Loading branch information
Showing
9 changed files
with
184 additions
and
14 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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
tflint { | ||
required_version = "~> 0.50" | ||
} | ||
|
||
plugin "terraform" { | ||
enabled = true | ||
|
||
source = "github.com/terraform-linters/tflint-ruleset-terraform" | ||
version = "0.9.1" | ||
|
||
preset = "all" | ||
} | ||
|
||
plugin "azurerm" { | ||
enabled = true | ||
|
||
source = "github.com/terraform-linters/tflint-ruleset-azurerm" | ||
version = "0.27.0" | ||
} | ||
|
||
rule "terraform_unused_required_providers" { | ||
enabled = false | ||
} | ||
|
||
rule "terraform_standard_module_structure" { | ||
enabled = false | ||
} |
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
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