gpt4 book ai didi

ssh-keys - terraform 是否支持 ssh 密码保护 key ?

转载 作者:行者123 更新时间:2023-12-02 04:35:49 24 4
gpt4 key购买 nike

我想在这里使用这个配置:

connection {
type = "ssh"
user = "root"
agent = true
private_key = "${file("~/.ssh/id_rsa")}"
}

我有错误:

password protected keys are not supported. Please decrypt the key prior to use.

我还尝试删除 private_key 参数。它只需要从 ssh-agent 读取 key ,但它不起作用。Terraform 版本为 0.9.2

最佳答案

好的。解决了。问题是未指定 ssh_keys 指纹,因此创建 vm 时未分配任何 ssh key 。但错误本身是非常具有误导性的。

所以只需添加:

resource "digitalocean_droplet" "mydroplet" {
ssh_keys = [
"<fingerprint can be found in digital ocean ssh keys tab>"
]
}

关于ssh-keys - terraform 是否支持 ssh 密码保护 key ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43197751/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com