Hi, I ran into problems when trying to set an RSA ...
# general
f
Hi, I ran into problems when trying to set an RSA key as pulumi config;
Copy code
pulumi config set rsaKey "$(<~/.ssh/id_rsa)" --secret

Error: bad flag syntax: -----BEGIN OPENSSH PRIVATE KEY-----
Is there an option to set config from file contents?
Figured this out on my own:
Copy code
pulumi config set rsaKey --secret < ~/.ssh/id_rsa
👍 1