I want to use an array to be used as a secret in the vault,
but the required value is not as expected it carries the backslash \
character after being output in terraform. i tried to use trim in terraform but it just erased some backslashes and the value can't be used
output trim code
trim(nonsensitive(data.secret.secret_data.data["iplist"]) , "\"")
result outputs after using trim
can I use the value in the form of an array without the backslash \
and in the form of a list of strings ?