Merge pull request #3117 from steeve/patch-1

Change GCP metadata SSH keys URL
This commit is contained in:
Rolf Neugebauer
2018-07-16 20:40:59 +01:00
committed by GitHub
8 changed files with 8 additions and 8 deletions

View File

@@ -97,7 +97,7 @@ func gcpGet(url string) ([]byte, error) {
// TODO split them into individual user files and make the ssh
// container construct those users
func (p *ProviderGCP) handleSSH() error {
sshKeys, err := gcpGet(project + "attributes/sshKeys")
sshKeys, err := gcpGet(project + "attributes/ssh-keys")
if err != nil {
return fmt.Errorf("Failed to get sshKeys: %s", err)
}