Files
tree-sitter-jhcl/fuzz/corpus/hashicorp%terraforminternal%terraform%testdata%destroy-module-with-provider%main.tf
2021-09-19 12:00:18 +02:00

12 lines
191 B
HCL

// this is the provider that should actually be used by orphaned resources
provider "aws" {
alias = "bar"
}
module "mod" {
source = "./mod"
providers = {
aws.foo = "aws.bar"
}
}