12 lines
145 B
Terraform
12 lines
145 B
Terraform
|
|
variable "input" {
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
resource "aws_instance" "foo" {
|
||
|
|
foo = var.input
|
||
|
|
}
|
||
|
|
|
||
|
|
output "foo" {
|
||
|
|
value = aws_instance.foo.foo
|
||
|
|
}
|