cloudfoundry-attic / bosh-init

bosh-init is a tool used to create and update the Director VM
Apache License 2.0
31 stars 33 forks source link

cloud_provider.ssh_tunnel.private_key cannot be relative to ~/.ssh #4

Closed drnic closed 9 years ago

drnic commented 9 years ago

The following worked:

cloud_provider:
  release: bosh-aws-cpi
  ssh_tunnel:
    host: 10.10.1.4
    port: 22
    user: vcap
    private_key: /home/ubuntu/.ssh/sw-bosh-us-west-2.pem

But the following fails to find the key file:

cloud_provider:
  release: bosh-aws-cpi
  ssh_tunnel:
    host: 10.10.1.4
    port: 22
    user: vcap
    private_key: ~/.ssh/sw-bosh-us-west-2.pem
drnic commented 9 years ago

@cppforlife can we setup a bot so issues go into a tracker?

cppforlife commented 9 years ago

~ is not properly interpolated.