mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-23 07:08:22 -04:00
11 lines
124 B
HCL
11 lines
124 B
HCL
|
|
variable "input" {
|
|
type = string
|
|
}
|
|
|
|
|
|
resource "foo_resource" "a" {
|
|
value = var.input
|
|
}
|
|
|
|
resource "bar_resource" "c" {}
|