You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/initwd/testdata/local-module-missing-provider/main.tf

15 lines
304 B

terraform {
required_providers {
foo = {
source = "hashicorp/foo"
// since this module declares an alias with no config, it is not valid as
// a root module.
configuration_aliases = [ foo.alternate ]
}
}
}
resource "foo_instance" "bam" {
provider = foo.alternate
}