From a8e023650bb7ff21a813760377093812ed10206a Mon Sep 17 00:00:00 2001 From: Lucas Rodriguez Date: Thu, 23 Jan 2025 01:09:00 -0600 Subject: [PATCH] specify ssh keypair output location --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8024c5e..b7edcae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,12 @@ jobs: role-to-assume: ${{ secrets.AWS_IAM_ROLE_ARN }} - name: Create SSH keypair - run: ssh-keygen -t rsa -b 2048 -q -N "" + run: ssh-keygen -t rsa -b 2048 -q -N "" -f ~/.ssh/id_rsa + + - name: Install terraform + uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2 + with: + terraform_wrapper: false - name: Deploy LLM run: ./deploy.sh