cloudposse / cloudposse/terraform-example-module
Add variable type to pass the linter check
Open
bug
- Dominant language
- HCL
- Stars
- 170
- Forks
- 73
- PR merge metrics
- No merged PRs in 30d
Description
Please change [terraform-example-module](https://github.com/cloudposse/terraform-example-module/tree/main)
/variables.tf from:
```
variable "example" {
description = "Example variable"
default = "hello world"
}
```
to
```
variable "example" {
type = string
description = "Example variable"
default = "hello world"
}
```
in order for the terraform lint to pass all checks.
Contributor guide
Assessment
This issue has not been assessed yet.