github.com/rstandt/terraform@v0.12.32-0.20230710220336-b1063613405c/configs/configupgrade/testdata/valid/relative-module-source/want/main.tf (about)

     1  module "foo" {
     2    # TF-UPGRADE-TODO: In Terraform v0.11 and earlier, it was possible to
     3    # reference a relative module source without a preceding ./, but it is no
     4    # longer supported in Terraform v0.12.
     5    #
     6    # If the below module source is indeed a relative local path, add ./ to the
     7    # start of the source string. If that is not the case, then leave it as-is
     8    # and remove this TODO comment.
     9    source = "module"
    10  }