opentofu/terraform/test-fixtures/import-provider-module/main.tf

11 lines
120 B
Terraform
Raw Normal View History

provider "aws" {
foo = "bar"
}
module "child" {
source = "./child"
providers {
"aws" = "aws"
}
}