mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-07-01 11:02:59 +00:00
12 lines
427 B
HCL
12 lines
427 B
HCL
data "proxmox_virtual_environment_time" "example" {
|
|
node_name = "${data.proxmox_virtual_environment_nodes.example.names[0]}"
|
|
}
|
|
|
|
output "data_proxmox_virtual_environment_time" {
|
|
value = "${map(
|
|
"local_time", data.proxmox_virtual_environment_time.example.local_time,
|
|
"time_zone", data.proxmox_virtual_environment_time.example.time_zone,
|
|
"utc_time", data.proxmox_virtual_environment_time.example.utc_time,
|
|
)}"
|
|
}
|