mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-08-23 03:48:35 +00:00
project config update
Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
This commit is contained in:
parent
4a0ceb9735
commit
34da8099a8
@ -7,7 +7,9 @@
|
|||||||
|
|
||||||
// Features to add to the dev container. More info: https://containers.dev/features.
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
||||||
"features": {
|
"features": {
|
||||||
"ghcr.io/devcontainers/features/terraform:1": {}
|
"ghcr.io/devcontainers/features/terraform:1": {
|
||||||
|
"version": "1.7.2"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
// Workaround for https://github.com/orgs/community/discussions/75161
|
// Workaround for https://github.com/orgs/community/discussions/75161
|
||||||
|
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -3,12 +3,13 @@
|
|||||||
"cSpell.words": [
|
"cSpell.words": [
|
||||||
"capi",
|
"capi",
|
||||||
"CLRF",
|
"CLRF",
|
||||||
|
"deepcode",
|
||||||
"iface",
|
"iface",
|
||||||
"iothread",
|
"iothread",
|
||||||
"keyctl",
|
"keyctl",
|
||||||
"mbps",
|
"mbps",
|
||||||
"NUMA",
|
|
||||||
"nolint",
|
"nolint",
|
||||||
|
"NUMA",
|
||||||
"proxmoxtf",
|
"proxmoxtf",
|
||||||
"qcow",
|
"qcow",
|
||||||
"rootfs",
|
"rootfs",
|
||||||
|
@ -86,6 +86,7 @@ func NewConnection(endpoint string, insecure bool, minTLS string) (*Connection,
|
|||||||
var transport http.RoundTripper = &http.Transport{
|
var transport http.RoundTripper = &http.Transport{
|
||||||
Proxy: http.ProxyFromEnvironment,
|
Proxy: http.ProxyFromEnvironment,
|
||||||
TLSClientConfig: &tls.Config{
|
TLSClientConfig: &tls.Config{
|
||||||
|
// deepcode ignore InsecureTLSConfig: the min TLS version is configurable
|
||||||
MinVersion: version,
|
MinVersion: version,
|
||||||
InsecureSkipVerify: insecure, //nolint:gosec
|
InsecureSkipVerify: insecure, //nolint:gosec
|
||||||
},
|
},
|
||||||
|
@ -4,6 +4,8 @@
|
|||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// file deepcode ignore NoHardcodedCredentials/test: test file
|
||||||
|
|
||||||
package tasks
|
package tasks
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
Loading…
Reference in New Issue
Block a user