mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
17 lines
231 B
HCL
17 lines
231 B
HCL
variable "name" {
|
|
type = string
|
|
}
|
|
|
|
resource "null_resource" "example" {
|
|
triggers = {
|
|
name = var.name
|
|
}
|
|
}
|
|
|
|
output "greeting" {
|
|
value = "Hello, ${var.name}!"
|
|
}
|
|
|
|
output "resource_id" {
|
|
value = null_resource.example.id
|
|
}
|