Terraform Error: Invalid variable name

Error: Invalid variable name

  on github_resources.tf line 7, in variable "count":
   7: variable "count" {

The variable name "count" is reserved due to its special meaning inside module
blocks.

Solution

You must not use following variables. These names are reserved for meta-arguments in module configuration blocks, and cannot be declared as variable names.

  • source
  • version
  • providers
  • count
  • for_each
  • lifecycle
  • depends_on
  • locals
Rajesh Kumar
Follow me