mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
31cc2d2ccd
A consequnce of the work done in #6185 was that variables which were in a module but not set explicitly (i.e. the default value was relied upon) were marked as type errors. This was reported in #6230. This commit adds a test case for this and a patch which fixes the issue.
8 lines
104 B
HCL
8 lines
104 B
HCL
resource "null_resource" "noop" {}
|
|
|
|
module "test" {
|
|
source = "./inner"
|
|
|
|
im_a_string = "hello"
|
|
}
|