mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-21 11:01:23 -05:00
10 lines
127 B
HCL
10 lines
127 B
HCL
provider "aws" {
|
|
alias = "east"
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
provider = aws.east
|
|
}
|
|
|
|
resource "aws_instance" "bar" {}
|