blob: 4ba7ef4d32e12f2cf2bc7b88fc4fb293e9e798ea [file] [log] [blame]
// This should result in installing hashicorp/foo
provider foo {}
// This will try to install hashicorp/baz, fail, and then suggest
// terraform-providers/baz
provider baz {}
// This will try to install hashicrop/frob, fail, find no suggestions, and
// result in an error
provider frob {}
module "some-baz-stuff" {
source = "./child"
}
module "dicerolls" {
source = "acme/bar/random"
}