Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add variable type to pass the linter check #44

Open
YevheniiPokhvalii opened this issue May 14, 2023 · 0 comments
Open

Add variable type to pass the linter check #44

YevheniiPokhvalii opened this issue May 14, 2023 · 0 comments
Labels
bug 🐛 An issue with the system

Comments

@YevheniiPokhvalii
Copy link

Please change terraform-example-module
/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.

@YevheniiPokhvalii YevheniiPokhvalii added the bug 🐛 An issue with the system label May 14, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug 🐛 An issue with the system
Projects
None yet
Development

No branches or pull requests

1 participant