Last active
December 9, 2024 05:53
-
-
Save RhubarbSin/d3db401da906015ff2a88cca1a42b027 to your computer and use it in GitHub Desktop.
Install Terraform on Amazon Linux 2023
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Install Terraform on Amazon Linux 2023 | |
# | |
# Install plugin for DNF. | |
sudo dnf install --assumeyes 'dnf-command(config-manager)' | |
# Add Terraform repository. | |
sudo dnf config-manager \ | |
--add-repo https://rpm.releases.hashicorp.com/AmazonLinux/hashicorp.repo | |
# Install terraform package. | |
sudo dnf install --assumeyes terraform |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment