英文:
Vault transit engine key lease duration
问题
以下是翻译好的部分:
"这是在使用 vault write -f transit/keys/transit_key exportable=true
命令创建HashiCorp Vault的transit引擎密钥后的输出结果:
...
“租约持续时间”: 0,
“租约ID”: “”,
“可续订”: false
...
这是否意味着密钥有效期无限?"
英文:
I see the following output after creating a key with HashiCorp vault’s transit engine using vault write -f transit/keys/transit_key exportable=true
command-
...
“lease duration”: 0,
“lease_id”: “”,
“renewable”: false
...
Does this mean that the key is valid for infinity?
答案1
得分: 1
是的,这是正确的。租约持续时间
为0意味着该密钥不会过期,有效期为无限。尽管通常不是一个好的安全实践将租约持续时间
设置为0。
英文:
Yes, that's right. A lease duration
of 0 would mean the key wouldn't expire and valid for infinity.
Though it is generally not a good security practice to set a lease duration
of 0.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论