GNU/Linux >> LINUX-Kenntnisse >  >> Fedora

So installieren Sie Terraform auf Fedora 35

In diesem Tutorial zeigen wir Ihnen, wie Sie Terraform auf Fedora 35 installieren. Für diejenigen unter Ihnen, die es nicht wussten, Terraform ist eine Open-Source-Infrastruktur als Code-Softwaretool, das bereitstellt ein konsistenter CLI-Workflow zur Verwaltung von Hunderten von Cloud-Diensten Terraform kodiert Cloud-APIs in deklarativen Konfigurationsdateien Terraform wird von Hashicorp erstellt und unter der Mozilla Public License veröffentlicht Es unterstützt öffentliche, private und hybride Clouds, derzeit unterstützt Terraform 145 Anbieter , das beliebte Anbieter wie AWS, Azure Cloud, GCP, Oracle Cloud und viele andere umfasst.

Dieser Artikel geht davon aus, dass Sie zumindest über Grundkenntnisse in Linux verfügen, wissen, wie man die Shell verwendet, und vor allem, dass Sie Ihre Website auf Ihrem eigenen VPS hosten. Die Installation ist recht einfach und setzt Sie voraus im Root-Konto ausgeführt werden, wenn nicht, müssen Sie möglicherweise 'sudo hinzufügen ‘ zu den Befehlen, um Root-Rechte zu erhalten. Ich zeige Ihnen Schritt für Schritt die Installation des Terraform auf einem Fedora 35.

Voraussetzungen

  • Ein Server, auf dem eines der folgenden Betriebssysteme ausgeführt wird:Fedora 35 oder Fedora 34.
  • Es wird empfohlen, dass Sie eine neue Betriebssysteminstallation verwenden, um potenziellen Problemen vorzubeugen
  • Ein non-root sudo user oder Zugriff auf den root user . Wir empfehlen, als non-root sudo user zu agieren , da Sie Ihr System beschädigen können, wenn Sie als Root nicht aufpassen.

Terraform auf Fedora 35 installieren

Schritt 1. Bevor Sie fortfahren, aktualisieren Sie Ihr Fedora-Betriebssystem, um sicherzustellen, dass alle vorhandenen Pakete auf dem neuesten Stand sind. Verwenden Sie diesen Befehl, um die Serverpakete zu aktualisieren:

sudo dnf upgrade
sudo dnf update
sudo dnf install dnf-plugins-core

Schritt 2. Installation von Terraform auf Fedora 35.

Standardmäßig ist Terraform im Basis-Repository von Fedora 35 verfügbar. Jetzt fügen wir das Terraform HashiCorp-Repository mit dem folgenden Befehl zu Ihrem System hinzu:

sudo dnf config-manager --add-repo https://rpm.releases.hashicorp.com/fedora/hashicorp.repo

Aktualisieren Sie als Nächstes erneut Ihre System-Repositories und installieren Sie das Terraform-Paket mit dem folgenden Befehl:

sudo dnf update
sudo dnf install terraform

Überprüfen Sie, ob die Installation funktioniert hat, indem Sie eine neue Terminalsitzung öffnen und die verfügbaren Unterbefehle von Terraform auflisten:

$ terraform -help
Usage: terraform [global options] <subcommand> [args]

The available commands for execution are listed below.
The primary workflow commands are given first, followed by
less common or more advanced commands.

Main commands:
  init          Prepare your working directory for other commands
  validate      Check whether the configuration is valid
  plan          Show changes required by the current configuration
  apply         Create or update infrastructure
  destroy       Destroy previously-created infrastructure

All other commands:
  console       Try Terraform expressions at an interactive command prompt
  fmt           Reformat your configuration in the standard style
  force-unlock  Release a stuck lock on the current workspace
  get           Install or upgrade remote Terraform modules
  graph         Generate a Graphviz graph of the steps in an operation
  import        Associate existing infrastructure with a Terraform resource
  login         Obtain and save credentials for a remote host
  logout        Remove locally-stored credentials for a remote host
  output        Show output values from your root module
  providers     Show the providers required for this configuration
  refresh       Update the state to match remote systems
  show          Show the current state or a saved plan
  state         Advanced state management
  taint         Mark a resource instance as not fully functional
  test          Experimental support for module integration testing
  untaint       Remove the 'tainted' state from a resource instance
  version       Show the current Terraform version
  workspace     Workspace management

Herzlichen Glückwunsch! Sie haben Terraform erfolgreich installiert. Vielen Dank, dass Sie dieses Tutorial zur Installation von Terraform auf Ihrem Fedora 35-System verwendet haben. Für zusätzliche Hilfe oder nützliche Informationen empfehlen wir Ihnen, die offizielle Terraform-Website zu besuchen.


Fedora
  1. So installieren Sie Vagrant auf Fedora 34

  2. So installieren Sie Node.js auf Fedora 35 / Fedora 34

  3. So installieren Sie Java 17 in Fedora 35

  4. So installieren Sie Notepad++ auf Fedora 35

  5. So installieren Sie Wireshark auf Fedora 35

So installieren Sie SQLite auf Fedora 35

So installieren Sie LibreOffice auf Fedora 35

So installieren Sie FFmpeg auf Fedora 35

So installieren Sie Anaconda auf Fedora 35

So installieren Sie Django auf Fedora 35

So installieren Sie Go auf Fedora 35