mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-08-24 04:18:33 +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
|
||||||
*.tfstate.lock.info
|
*.tfstate.lock.info
|
||||||
*.tfvars
|
*.tfvars
|
||||||
|
*.env
|
||||||
|
|
||||||
.*.swp
|
.*.swp
|
||||||
.DS_Store
|
.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",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": "Debug provider",
|
"name": "Debug Provider",
|
||||||
"type": "go",
|
"type": "go",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"mode": "auto",
|
"mode": "auto",
|
||||||
|
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -4,5 +4,6 @@
|
|||||||
"iothread",
|
"iothread",
|
||||||
"qcow",
|
"qcow",
|
||||||
"virtio"
|
"virtio"
|
||||||
]
|
],
|
||||||
|
"go.testEnvFile": "${workspaceFolder}/test.env",
|
||||||
}
|
}
|
||||||
|
@ -381,6 +381,7 @@ func (r *clusterOptionsResource) Schema(
|
|||||||
"mac_prefix": schema.StringAttribute{
|
"mac_prefix": schema.StringAttribute{
|
||||||
Description: "Prefix for autogenerated MAC addresses.",
|
Description: "Prefix for autogenerated MAC addresses.",
|
||||||
Optional: true,
|
Optional: true,
|
||||||
|
Computed: true,
|
||||||
},
|
},
|
||||||
"description": schema.StringAttribute{
|
"description": schema.StringAttribute{
|
||||||
Description: "Datacenter description. Shown in the web-interface datacenter notes panel. " +
|
Description: "Datacenter description. Shown in the web-interface datacenter notes panel. " +
|
||||||
|
Loading…
Reference in New Issue
Block a user