mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-14 19:00:37 -05:00
18 lines
283 B
HCL
18 lines
283 B
HCL
terraform {
|
|
required_providers {
|
|
test = {
|
|
source = "hashicorp/test"
|
|
configuration_aliases = [ test.secondary ]
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "test_resource" "primary" {
|
|
value = "foo"
|
|
}
|
|
|
|
resource "test_resource" "secondary" {
|
|
provider = test.secondary
|
|
value = "bar"
|
|
}
|