mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-27 04:44:09 -04:00
12 lines
151 B
Terraform
12 lines
151 B
Terraform
|
|
variable "input" {
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
resource "test_resource" "resource" {
|
||
|
|
value = var.input
|
||
|
|
}
|
||
|
|
|
||
|
|
output "id" {
|
||
|
|
value = test_resource.resource.id
|
||
|
|
}
|