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
|
|
}
|