cloudposse / cloudposse/terraform-example-module

Add variable type to pass the linter check

Open
#44 0 comments 0 reactions 0 assignees View on GitHub
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.