mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-21 06:08:16 -04:00
9 lines
101 B
Terraform
9 lines
101 B
Terraform
|
|
|
||
|
|
variable "input" {
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
resource "test_resource" "resource" {
|
||
|
|
value = var.input
|
||
|
|
}
|