mirror of https://github.com/hashicorp/terraform
In the unlikely event that a moduleCall has a nil config - for example, if a nested module call includes a variable with a typo in an attribute - continue gracefully.pull/21569/head
parent
ab9e98da3c
commit
703f024cbd
@ -0,0 +1,3 @@
|
||||
module "my_module" {
|
||||
source = "./modules"
|
||||
}
|
||||
@ -0,0 +1,3 @@
|
||||
module "more" {
|
||||
source = "./more-modules"
|
||||
}
|
||||
@ -0,0 +1,4 @@
|
||||
variable "misspelled" {
|
||||
default = "ehllo"
|
||||
descriptoni = "I am a misspelled attribute"
|
||||
}
|
||||
@ -0,0 +1,23 @@
|
||||
{
|
||||
"format_version": "0.1",
|
||||
"terraform_version": "0.12.1-dev",
|
||||
"planned_values": {
|
||||
"root_module": {}
|
||||
},
|
||||
"configuration": {
|
||||
"root_module": {
|
||||
"module_calls": {
|
||||
"my_module": {
|
||||
"source": "./modules",
|
||||
"module": {
|
||||
"module_calls": {
|
||||
"more": {
|
||||
"module": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue