Upgrade to Pro — share decks privately, control downloads, hide ads and more …

TerraformでAzure構築【入門編】

Avatar for やしきん やしきん
September 29, 2025
3

 TerraformでAzure構築【入門編】

2025年9月26日 YonaYona Azure ゆるっとIaC会 #初心者歓迎でLT発表した資料になります。

https://yonayona.connpass.com/event/366185/

Avatar for やしきん

やしきん

September 29, 2025
Tweet

Transcript

  1. IaCを実装する時に利用するのは・・? Azure なら Bicepを利用することが多め • ARM Templateより簡潔な記述でIaCの実装が可能 • Azure サービスのプレビュー版と

    GA バージョンがすぐにサポートされる Microsoftが直接開発しているのもあり、 Azureと組み合わせて利用しやすい
  2. まとめ • Terraformのコードを書く ◦ main.tfを作成してresourceブロックにリソース設定を記載 ◦ 各種プロバイダーの設定を記載 ◦ 変数を定義する場合はvariableブロックに記載 •

    実行する時のステップ(他にも様々なコマンドがあります) ◦ terraform initで初期化 ◦ terraform planで変更内容や適用内容をチェック ◦ terraform applyでデプロイ ◦ terraform destroyで削除
  3. 参考 • https://learn.microsoft.com/ja-jp/azure/azure-resource-manager/bicep/overvi ew?tabs=bicep • https://registry.terraform.io/browse/providers • https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resourc es/storage_account •

    https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resourc es/storage_account • https://learn.microsoft.com/ja-jp/training/paths/terraform-fundamentals/ • https://learn.microsoft.com/ja-jp/azure/developer/terraform/overview • https://developer.hashicorp.com/terraform/docs/tools/mcp-server