このチュートリアルでは、Fedora 35にTerraformをインストールする方法を示します。知らなかった方のために、Terraformは、提供するコードソフトウェアツールとしてのオープンソースインフラストラクチャです。数百のクラウドサービスを管理するための一貫したCLIワークフロー。TerraformはクラウドAPIを宣言型構成ファイルにコード化します。TerraformはHashicorpによって構築され、Mozilla Public Licenseの下でリリースされます。現在、Terraformは145のプロバイダーをサポートしています。 、AWS、Azureクラウド、GCP、Oracleクラウドなどの人気のあるプロバイダーが含まれます。
この記事は、少なくともLinuxの基本的な知識があり、シェルの使用方法を知っていること、そして最も重要なこととして、サイトを独自のVPSでホストしていることを前提としています。インストールは非常に簡単で、ルートアカウントで実行されていますが、そうでない場合は、'sudo
を追加する必要があります。 ‘ルート権限を取得するコマンドに。 Ferdora35にTerraformを段階的にインストールする方法を紹介します。
前提条件
- 次のオペレーティングシステムのいずれかを実行しているサーバー:Fedora35またはFedora34。
- 潜在的な問題を防ぐために、OSの新規インストールを使用することをお勧めします
non-root sudo user
またはroot user
へのアクセス 。non-root sudo user
として行動することをお勧めします ただし、ルートとして機能するときに注意しないと、システムに害を及ぼす可能性があるためです。
Fedora35にTerraformをインストールする
手順1.続行する前に、Fedoraオペレーティングシステムを更新して、既存のすべてのパッケージが最新であることを確認します。次のコマンドを使用して、サーバーパッケージを更新します。
sudo dnf upgrade sudo dnf update sudo dnf install dnf-plugins-core
ステップ2.Fedora35にTerraformをインストールします。
デフォルトでは、TerraformはFedora 35ベースリポジトリで利用できます。次に、次のコマンドを使用して、TerraformHashiCorpリポジトリをシステムに追加します。
sudo dnf config-manager --add-repo https://rpm.releases.hashicorp.com/fedora/hashicorp.repo
次に、システムリポジトリを再度更新し、以下のコマンドを使用してTerraformパッケージをインストールします。
sudo dnf update sudo dnf install terraform
新しいターミナルセッションを開き、Terraformの使用可能なサブコマンドを一覧表示して、インストールが機能したことを確認します。
$ 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
おめでとうございます!Terraformが正常にインストールされました。Fedora35システムにTerraformをインストールするためにこのチュートリアルを使用していただき、ありがとうございます。追加のヘルプや役立つ情報については、Terraformの公式Webサイトを確認することをお勧めします。