Skip to content

Commit

Permalink
Install Terraform attempt #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Daemonslayer2048 committed Jan 8, 2025
1 parent d97df9a commit f43c743
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/rocky.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ jobs:
uses: actions/checkout@v2

- name: Install Terraform
run: sudo apt install terraform -y
run: |
wget -O - https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
sudo apt update -y && sudo apt install terraform -y
- name: Terraform Init
id: init
Expand Down

0 comments on commit f43c743

Please sign in to comment.