如何使用 Terraform 在 Openstack 实例上添加非根 ssh 密钥



我正在尝试使用Terraform创建一个Openstack实例,之后,我想用我的ssh密钥配置用户"ubuntu"。

到目前为止,我正在做:

terraform-instances.tf

resource "openstack_compute_keypair_v2" "tf-keypair" {
  name       = "${var.openstack_keypair}"
  public_key = "${file("~/.ssh/id_rsa.pub")}"
}
resource "openstack_compute_instance_v2" "k8s-master" {
  name      = "k8s-master"
  region    = "${var.openstack_region}"
  image_id  = "${var.openstack_image_id}"
  flavor_id = "${var.openstack_flavor_id}"
  key_pair  = "${var.openstack_keypair}"
  depends_on = ["openstack_compute_keypair_v2.tf-keypair"]
  network {
    uuid = "00000000-0000-0000-0000-000000000000"
    name = "public"
  }
  network {
    uuid = "11111111-1111-1111-1111-111111111111"
    name = "private"
  }
}
resource "null_resource" "authkeys" {
  depends_on = ["openstack_compute_instance_v2.k8s-master"]
  provisioner "file" {
    source      = "authorized_keys"
    destination = "/home/ubuntu/.ssh/authorized_keys"
    }
  connection {
    host        = "${openstack_compute_instance_v2.k8s-master.network.0.fixed_ip_v4}"
    type        = "ssh"
    user        = "root"
    private_key = "${file("~/.ssh/id_rsa")}"
    timeout     = "45s"
    }
}

所以运行后:

terraform apply 

实例是用我的 ssh 密钥为根用户创建的,而不是用 ubuntu 用户创建的。

如何为 ubuntu 用户部署我的 ssh 密钥?

我建议使用cloud-init,因为openstack中没有任何内容(它实际上使用cloud-init本身来预种子密钥)。

相关内容

  • 没有找到相关文章

最新更新