mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-21 14:18:43 -04:00
12 lines
145 B
Terraform
12 lines
145 B
Terraform
|
|
variable "id" {
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
resource "test_resource" "resource" {
|
||
|
|
value = var.id
|
||
|
|
}
|
||
|
|
|
||
|
|
output "id" {
|
||
|
|
value = test_resource.resource.id
|
||
|
|
}
|