mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-07-01 11:02:59 +00:00
* 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>
791 B
791 B
layout | title | permalink | nav_order | parent | subcategory |
---|---|---|---|---|---|
page | proxmox_virtual_environment_time | /resources/virtual_environment_time | 15 | Resources | Virtual Environment |
Resource: proxmox_virtual_environment_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.
Import
Instances can be imported using the node_name
, e.g.,
terraform import proxmox_virtual_environment_dns.first_node first-node