10 lines
130 B
HCL
10 lines
130 B
HCL
variable "input" {}
|
|
|
|
resource "test_object" "foo" {
|
|
test_string = var.input
|
|
}
|
|
|
|
output "output" {
|
|
value = test_object.foo.id
|
|
}
|