firebase 函数配置 - 删除数据
firebase functions config - delete data
我使用描述的语法向 firebase 的加密配置服务添加了一些数据 here。
现在我不再需要它了,我想将它从配置对象中删除。我知道它是安全存储的,我只是不想让这个配置文件被我不再需要使用的信息污染。
如何从 firebase 函数配置对象中删除数据?
您链接到的文档中有一节关于 additional environment commands。
firebase functions:config:unset key1 key2
removes the specified keys from the config
我使用描述的语法向 firebase 的加密配置服务添加了一些数据 here。
现在我不再需要它了,我想将它从配置对象中删除。我知道它是安全存储的,我只是不想让这个配置文件被我不再需要使用的信息污染。
如何从 firebase 函数配置对象中删除数据?
您链接到的文档中有一节关于 additional environment commands。
firebase functions:config:unset key1 key2
removes the specified keys from the config