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
I'm integrating my Terraform script with Semaphore (Docker). My Terraform code provisions a VM in Oracle Cloud, and according to the documentation, I need to pass the private key path.
However, I don't want to store my private key in the Git repository. Since Terraform requires a path to the key, I’m unsure how to securely pass it in Semaphore.
Does anyone have a workaround for this?
Here is an example from my *.tfvars file
private_key_path = "access_key.pem"
Thanks in advance!
The text was updated successfully, but these errors were encountered:
I've accomplished this by using our cloud secret/password server's API to pull the secrets I need per project including the ssh key for our local VCS. I first stored the username/password and used external to retrieve a token, then curl with said token to fetch all the secrets I need dynamically.
Question
Hi everyone,
I'm integrating my Terraform script with Semaphore (Docker). My Terraform code provisions a VM in Oracle Cloud, and according to the documentation, I need to pass the private key path.
However, I don't want to store my private key in the Git repository. Since Terraform requires a path to the key, I’m unsure how to securely pass it in Semaphore.
Does anyone have a workaround for this?
Here is an example from my *.tfvars file
Thanks in advance!
The text was updated successfully, but these errors were encountered: