Difference between revisions of "Error: Invalid value for module argument"

From wikieduonline
Jump to navigation Jump to search
Line 8: Line 8:
 
  │ The given value is not suitable for child module variable "lb_listener" defined at ../xxxxx/variables.tf:85,1-23: [[list of object required]].
 
  │ The given value is not suitable for child module variable "lb_listener" defined at ../xxxxx/variables.tf:85,1-23: [[list of object required]].
 
   
 
   
 +
 +
 +
 +
│ Error: Invalid value for module argument
 +
 +
│  on main.tf line 8, in module "yourModuleName":
 +
│    8:  [[subnet_ids]] = var.subnet_id
 +
 +
│ The given value is not suitable for child module variable "subnet_ids" defined at
 +
│ ../path/to/your/terraformodule.tf :79,1-22: [[list of string required]].
 +
 +
* Solution: if your element if from type <code>[[list]]</code> make user provide values using proper format: <code>[value1, value2]</code>
  
  

Revision as of 12:56, 20 September 2021


│ Error: Invalid value for module argument
│
│   on main.tf line 23, in module "alb":
│   23:   lb_listener = var.lb_listener
│
│ The given value is not suitable for child module variable "lb_listener" defined at ../xxxxx/variables.tf:85,1-23: list of object required.


│ Error: Invalid value for module argument
│
│   on main.tf line 8, in module "yourModuleName":
│    8:   subnet_ids = var.subnet_id
│
│ The given value is not suitable for child module variable "subnet_ids" defined at
│ ../path/to/your/terraformodule.tf :79,1-22: list of string required.
  • Solution: if your element if from type list make user provide values using proper format: [value1, value2]


See also

Advertising: