0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-06-29 18:21:10 +00:00
terraform-provider-proxmox/example/data_source_virtual_environment_time.tf
2021-02-13 02:46:29 +01:00

12 lines
411 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 = {
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
}
}