0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-02 19:43:00 +00:00
terraform-provider-proxmox/docs/resources/virtual_environment_time.md
Pavel Boldyrev 7d94bf73ec
chore(docs): remove static website generator with ruby dependencies (#929)
Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
2024-01-18 03:21:50 +00:00

38 lines
730 B
Markdown

---
layout: page
title: proxmox_virtual_environment_time
parent: Resources
subcategory: Virtual Environment
---
# Resource: proxmox_virtual_environment_time
Manages the time for a specific node.
## Example Usage
```terraform
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.
## Import
Instances can be imported using the `node_name`, e.g.,
```bash
terraform import proxmox_virtual_environment_dns.first_node first-node
```