>100 Views
September 27, 25
スライド概要
2025/9/26 YonaYona Azure Club LT資料です。
Bicepの最初のステップとしてスモールに試せる方法を紹介しました。
はじめての Bicep
https://qiita.com/yuyanz
Infrastructure as Code(IaC) Codeを ・・・ 実行すると ・・・ Infraが完成!
Bicep Azure リソースをデプロイするドメイン固有言語です。 Bicepで書く ・・・ 実行すると ・・・ Azureが完成!
公式ドキュメント(Learn)を見ると・・・ Bicep とは - Azure Resource Manager | Microsoft Learn
難しそう VSCode 使ったことない 二頭筋て何 Code書けない
簡単だった!!
Codeの準備 リソースグループを作成するCodeです test.bicep targetScope = 'subscription' param Location string = 'japaneast' resource resourceGroup 'Microsoft.Resources/resourceGroups@2021-04-01' = { name: 'test-rg' location: Location }
「test.bicep」をアップロード
コマンド入力(黄色文字) xxxx$az deployment sub create --location japaneast --template-file test.bicep
Azure portalで確認 ※リソースグループで検索後の画面
「Bicepできる」ための情報は揃いました! Bicepの次は何に挑戦してみますか? ※独断と偏見で選定しているので他にも色々あります
個人的にBicepを使うなら知っておくと便利なこと
Thank you! ご質問などありましたらお気軽に!