You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, great work on the terraform resource! generally its worked great. Im having one issue that i thought it worth bringing to you.
Im using the private_key parameter to access some organisation internal repos. This generally works but im getting some ssh erros reported which im concerned that my config isnt quite right.
Note that we are using a GitHub oauth for cloning repositories using git, this is a problem of terraform downloading modules.
The ssh errors reported are:
2022/08/03 12:54:01 agent 27: ssh: parse error in message type 27
2022/08/03 12:54:04 agent 27: ssh: parse error in message type 27
2022/08/03 12:54:05 agent 27: ssh: parse error in message type 27
I thought this might mean that i have some trailing garbage on the private_key after putting it into a yaml vars file but ive been unable to locate the private key on the nodes running the terraform so ive been unable to compare what it should be with whats being used.
The text was updated successfully, but these errors were encountered:
We don't write the private key to disk, we add it directly to the SSH agent here. YAML has a couple different ways of specifying multiline strings, maybe try messing with those: https://yaml-multiline.info/. Or you can add some logging to stderr in the resource and build a custom resource as described here.
Hi, great work on the terraform resource! generally its worked great. Im having one issue that i thought it worth bringing to you.
Im using the private_key parameter to access some organisation internal repos. This generally works but im getting some ssh erros reported which im concerned that my config isnt quite right.
Note that we are using a GitHub oauth for cloning repositories using git, this is a problem of terraform downloading modules.
The ssh errors reported are:
2022/08/03 12:54:01 agent 27: ssh: parse error in message type 27
2022/08/03 12:54:04 agent 27: ssh: parse error in message type 27
2022/08/03 12:54:05 agent 27: ssh: parse error in message type 27
I thought this might mean that i have some trailing garbage on the private_key after putting it into a yaml vars file but ive been unable to locate the private key on the nodes running the terraform so ive been unable to compare what it should be with whats being used.
The text was updated successfully, but these errors were encountered: