0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-03 12:02:57 +00:00
terraform-provider-proxmox/docs/resources/time.md

32 lines
555 B
Markdown

---
layout: page
title: Time
permalink: /resources/time
nav_order: 11
parent: Resources
subcategory: Virtual Environment
---
# Resource: Time
Manages the time for a specific node.
## Example Usage
```
resource "proxmox_virtual_environment_time" "first_node_time" {
node_name = "first-node"
time_zone = "UTC"
}
```
## Argument Reference
* `node_name` - (Required) A node name.
* `time_zone` - (Required) The node's time zone.
## Attribute Reference
* `local_time` - The node's local time.
* `utc_time` - The node's local time formatted as UTC.