diff --git a/config_tests/module_sources/module_relative_source/main.tf b/config_tests/module_sources/module_relative_source/main.tf index e2494ea8..fe7fb87d 100644 --- a/config_tests/module_sources/module_relative_source/main.tf +++ b/config_tests/module_sources/module_relative_source/main.tf @@ -3,23 +3,24 @@ module "referencing_parent" { custom_var = var.parent-var } -module "referencing_subdir" { - source = "./subdir" - custom_var = var.subdir-var -} +#module "referencing_subdir" { +# source = "./subdir" +# custom_var = var.subdir-var +#} variable "parent-var" { } -variable "subdir-var" { - -} +# variable "subdir-var" { +# +# } output "referencing_output_parent" { value = module.referencing_parent.pet_name } -output "referencing_output_subdir" { - value = module.referencing_subdir.pet_name -} \ No newline at end of file +#output "referencing_output_subdir" { +# value = module.referencing_subdir.pet_name +# +#}