Difference between revisions of "Terraform error: List of string required"

From wikieduonline
Jump to navigation Jump to search
(Created page with " │ Error: Invalid value for module argument │ │ on main.tf line 8, in module "yourModuleName": │ 8: subnet_ids = var.subnet_id │ │ The given value...")
 
Line 5: Line 5:
 
  │    8:  [[subnet_ids]] = var.subnet_id
 
  │    8:  [[subnet_ids]] = var.subnet_id
 
  │
 
  │
  │ The given value is not suitable for child module variable "subnet_ids" defined at
+
  │ 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]].
 
  │ ../path/to/your/terraformodule.tf :79,1-22: [[list of string required]].
  

Revision as of 14:25, 4 October 2021

│ 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: