0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-01 19:12:59 +00:00
terraform-provider-proxmox/docs/resources/virtual_environment_time.md
Pavel Boldyrev e2717a9a9e
feat(docs): add initial mini-howtos for VM (#730)
* chore(docs): minor fixes and linting

Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>

* chore(docs): add VM mini-howtos with examples

Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>

* address peer-review feedback

Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>

* vscode settings

Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>

---------

Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
2023-11-28 12:38:47 -05:00

40 lines
791 B
Markdown

---
layout: page
title: proxmox_virtual_environment_time
permalink: /resources/virtual_environment_time
nav_order: 15
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
```