mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-13 00:46:16 -06:00
14 lines
231 B
HCL
14 lines
231 B
HCL
variable "username" {
|
|
default = "bob"
|
|
}
|
|
|
|
data "template_file" "user" {
|
|
template = "$${USERNAME}"
|
|
vars {
|
|
USERNAME = "${var.username}"
|
|
}
|
|
provisioner "local-exec" {
|
|
command = "echo ${self.rendered} > user.txt"
|
|
}
|
|
}
|