mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-20 10:01:21 -05:00
Update tests to match the new behavior. Some were incorrect, some no longer make sense, and some just weren't setup to handle th plan api calls.
12 lines
145 B
HCL
12 lines
145 B
HCL
variable "input" {
|
|
type = string
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
foo = var.input
|
|
}
|
|
|
|
output "foo" {
|
|
value = aws_instance.foo.foo
|
|
}
|