mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-26 20:34:48 -04:00
18 lines
283 B
Terraform
18 lines
283 B
Terraform
|
|
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"
|
||
|
|
}
|