13 lines
191 B
Terraform
13 lines
191 B
Terraform
|
terraform {
|
||
|
required_providers {
|
||
|
test = {
|
||
|
source = "hashicorp/test"
|
||
|
configuration_aliases = [test.foo]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
resource "test_resource" "foo" {
|
||
|
provider = test.foo
|
||
|
}
|