Dalam tutorial ini, kami akan menunjukkan cara menginstal Terraform di CentOS 8. Bagi Anda yang belum tahu, Terraform adalah alat otomatisasi Infrastruktur sumber terbuka dan gratis dari Hashicorp yang digunakan untuk membuat, membangun, dan mengubah menggunakan infrastruktur sebagai kode di berbagai penyedia cloud seperti AWS, Azure cloud, GCP, Oracle cloud, dan banyak lainnya.
Artikel ini mengasumsikan Anda memiliki setidaknya pengetahuan dasar tentang Linux, tahu cara menggunakan shell, dan yang terpenting, Anda meng-host situs Anda di VPS Anda sendiri. Instalasi cukup sederhana dan mengasumsikan Anda sedang berjalan di akun root, jika tidak, Anda mungkin perlu menambahkan 'sudo
' ke perintah untuk mendapatkan hak akses root. Saya akan menunjukkan kepada Anda melalui langkah-demi-langkah instalasi Terraform pada CentOS 8.
Prasyarat
- Server yang menjalankan salah satu sistem operasi berikut:CentOS 8.
- Sebaiknya Anda menggunakan penginstalan OS baru untuk mencegah potensi masalah
- Seorang
non-root sudo user
atau akses keroot user
. Kami merekomendasikan untuk bertindak sebagainon-root sudo user
, namun, karena Anda dapat membahayakan sistem jika tidak berhati-hati saat bertindak sebagai root.
Instal Terraform di CentOS 8
Langkah 1. Pertama-tama, pastikan semua paket sudah diperbarui.
sudo dnf update
Langkah 2. Menginstal Terraform di CentOS 8.
Jalankan perintah berikut untuk mengunduh penyiapan terraform terbaru dari situs resmi Terraform:
wget https://releases.hashicorp.com/terraform/1.0.0/terraform_1.0.0_linux_amd64.zip sudo unzip terraform_1.0.0_linux_amd64.zip
Selanjutnya, pindahkan setup yang telah diekstrak ke /usr/local/bin
direktori:
sudo mv terraform /usr/local/bin/
Sekarang penginstalan dapat diverifikasi dengan menjalankan perintah versi terraform sederhana:
terraform -v
Setelah berhasil diinstal, mari kita periksa ke perintah terraform:
terraform
Keluaran:
terraform Usage: terraform [-version] [-help][args] The available commands for execution are listed below. The most common, useful commands are shown first, followed by less common or more advanced commands. If you're just getting started with Terraform, stick with the common commands. For the other commands, please read the help and docs before usage. Common commands: apply Builds or changes infrastructure console Interactive console for Terraform interpolations destroy Destroy Terraform-managed infrastructure env Workspace management fmt Rewrites config files to canonical format get Download and install modules for the configuration graph Create a visual graph of Terraform resources import Import existing infrastructure into Terraform init Initialize a Terraform working directory login Obtain and save credentials for a remote host logout Remove locally-stored credentials for a remote host output Read an output from a state file plan Generate and show an execution plan providers Prints a tree of the providers used in the configuration refresh Update local state file against real resources show Inspect Terraform state or plan taint Manually mark a resource for recreation untaint Manually unmark a resource as tainted validate Validates the Terraform files version Prints the Terraform version workspace Workspace management All other commands: 0.12upgrade Rewrites pre-0.12 module source code for v0.12 debug Debug output management (experimental) force-unlock Manually unlock the terraform state push Obsolete command for Terraform Enterprise legacy (v1) state Advanced state management
Selamat! Anda telah berhasil menginstal Terraform. Terima kasih telah menggunakan tutorial ini untuk menginstal Terraform pada sistem CentOS 8. Untuk bantuan tambahan atau informasi berguna, kami sarankan Anda memeriksa situs resmi Terraform.