mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-26 17:01:10 -05:00
8 lines
91 B
HCL
8 lines
91 B
HCL
variable "foo" {
|
|
default = 123
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
foo = "${var.foo}"
|
|
}
|