10 lines
104 B
Terraform
10 lines
104 B
Terraform
|
locals {
|
||
|
foo = "bar"
|
||
|
baz = "boop"
|
||
|
}
|
||
|
|
||
|
resource "test_instance" "foo" {
|
||
|
image = "b"
|
||
|
type = "d"
|
||
|
}
|