mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-27 09:21:14 -06:00
Fix default values
This commit is contained in:
parent
bc07a54cfd
commit
82c0b440dc
@ -145,13 +145,13 @@ func New() backend.Backend {
|
||||
"oidc_token": {
|
||||
Type: schema.TypeString,
|
||||
Optional: true,
|
||||
DefaultFunc: schema.EnvDefaultFunc("ARM_OIDC_TOKEN", false),
|
||||
DefaultFunc: schema.EnvDefaultFunc("ARM_OIDC_TOKEN", ""),
|
||||
Description: "A generic JWT token that can be used for OIDC authentication. Should not be used in conjunction with `oidc_request_token`.",
|
||||
},
|
||||
"oidc_token_file_path": {
|
||||
Type: schema.TypeString,
|
||||
Optional: true,
|
||||
DefaultFunc: schema.EnvDefaultFunc("ARM_OIDC_TOKEN_FILE_PATH", false),
|
||||
DefaultFunc: schema.EnvDefaultFunc("ARM_OIDC_TOKEN_FILE_PATH", ""),
|
||||
Description: "Path to file containing a generic JWT token that can be used for OIDC authentication. Should not be used in conjunction with `oidc_request_token`.",
|
||||
},
|
||||
"oidc_request_url": {
|
||||
|
Loading…
Reference in New Issue
Block a user