True or False? Module source can be only local path
Answer
False. It can be a Git URL, HTTP URL, ... for example:
module "some_module" {
source = "github.com/foo/modules/bar?ref=v0.1"
}
False. It can be a Git URL, HTTP URL, ... for example:
module "some_module" {
source = "github.com/foo/modules/bar?ref=v0.1"
}