mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-10 08:03:08 -06:00
10 lines
126 B
HCL
10 lines
126 B
HCL
provider "aws" {
|
|
alias = "east"
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
alias = "east"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {}
|