mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-08-23 11:58:34 +00:00
fix(cluster): can't read back cluster options on PVE 8.1 (#755)
Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
This commit is contained in:
parent
b2782375e2
commit
cd24cf238c
1
.gitignore
vendored
1
.gitignore
vendored
@ -31,6 +31,7 @@ modules-dev/
|
||||
*.tfstate
|
||||
*.tfstate.lock.info
|
||||
*.tfvars
|
||||
*.env
|
||||
|
||||
.*.swp
|
||||
.DS_Store
|
||||
|
7
.vscode/extensions.json
vendored
Normal file
7
.vscode/extensions.json
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"davidanson.vscode-markdownlint",
|
||||
"joshbolduc.commitlint",
|
||||
"hashicorp.terraform",
|
||||
]
|
||||
}
|
2
.vscode/launch.json
vendored
2
.vscode/launch.json
vendored
@ -2,7 +2,7 @@
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Debug provider",
|
||||
"name": "Debug Provider",
|
||||
"type": "go",
|
||||
"request": "launch",
|
||||
"mode": "auto",
|
||||
|
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -4,5 +4,6 @@
|
||||
"iothread",
|
||||
"qcow",
|
||||
"virtio"
|
||||
]
|
||||
],
|
||||
"go.testEnvFile": "${workspaceFolder}/test.env",
|
||||
}
|
||||
|
@ -381,6 +381,7 @@ func (r *clusterOptionsResource) Schema(
|
||||
"mac_prefix": schema.StringAttribute{
|
||||
Description: "Prefix for autogenerated MAC addresses.",
|
||||
Optional: true,
|
||||
Computed: true,
|
||||
},
|
||||
"description": schema.StringAttribute{
|
||||
Description: "Datacenter description. Shown in the web-interface datacenter notes panel. " +
|
||||
|
Loading…
Reference in New Issue
Block a user