mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
8 lines
108 B
HCL
8 lines
108 B
HCL
provider "aws" {
|
|
foo = "${aws_instance.foo.bar}"
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
bar = "value"
|
|
}
|