value
Parameters
value
Specifies the value of the Key Vault Secret. Changing this will create a new version of the Key Vault Secret.
Note: Key Vault strips newlines. To preserve newlines in multi-line secrets try replacing them with
\n
or by base 64 encoding them withreplace(file("my_secret_file"), "/\n/", "\n")
orbase64encode(file("my_secret_file"))
, respectively.