6 lines
72 B
Terraform
6 lines
72 B
Terraform
|
variable "foo" {}
|
||
|
|
||
|
resource "test_instance" "foo" {
|
||
|
foo = var.foo
|
||
|
}
|