mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-16 02:00:51 -05:00
6 lines
118 B
HCL
6 lines
118 B
HCL
provider "aws" {}
|
|
resource "aws_instance" "db" {}
|
|
resource "aws_instance" "web" {
|
|
foo = "${aws_instance.db.id}"
|
|
}
|