mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
13 lines
159 B
HCL
13 lines
159 B
HCL
provider "aws" {
|
|
alias = "bar"
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
num = "2"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = "bar"
|
|
provider = "aws.bar"
|
|
}
|