mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-07-01 02:52:58 +00:00
13 lines
495 B
HCL
13 lines
495 B
HCL
resource "proxmox_virtual_environment_time" "example" {
|
|
node_name = "${data.proxmox_virtual_environment_time.example.node_name}"
|
|
time_zone = "${data.proxmox_virtual_environment_time.example.time_zone}"
|
|
}
|
|
|
|
output "resource_proxmox_virtual_environment_time" {
|
|
value = "${map(
|
|
"local_time", proxmox_virtual_environment_time.example.local_time,
|
|
"time_zone", proxmox_virtual_environment_time.example.time_zone,
|
|
"utc_time", proxmox_virtual_environment_time.example.utc_time,
|
|
)}"
|
|
}
|