Azure クイックスタート テンプレートは現在英語で使用できます
This template creates a VNet, 2 subnets, and a gateway
この Azure Resource Manager (ARM) テンプレートは、マイクロソフトではなく、コミュニティのメンバーによって作成されました。各 ARM テンプレートは、マイクロソフトではなく、テンプレートの所有者によるライセンス契約に基づいて使用許諾されます。マイクロソフトは、コミュニティ メンバーによって提供および使用許諾される ARM テンプレートに対して責任を負わず、セキュリティ、互換性、パフォーマンスなどについての調査を行っていません。コミュニティ ARM テンプレートは、Microsoft サポート プログラムまたはサービスのサポート対象ではなく、手を加えずに提供され、いかなる保証もありません。
パラメーター
パラメーター名 | 説明 |
---|---|
localGatewayName | Name for gateway connected to other VNet/on-prem network |
localGatewayIpAddress | Public IP address for the gateway to connect to (from other VNet/on-prem) |
localGatewayAddressPrefix | CIDR block for remote network |
virtualNetworkName | Name for new virtual network |
addressPrefix | Name for new virtual network |
subnet1Name | Name for VM subnet in the new VNet |
gatewaySubnet | Name for gateway subnet in new VNet |
subnet1Prefix | CIDR block for VM subnet |
gatewaySubnetPrefix | CIDR block for gateway subnet |
gatewayPublicIPName | Name for public IP object used for the new gateway |
gatewayName | Name for the new gateway |
location | Location where resources reside. |
テンプレートを使用する
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentAzure PowerShell のインストールと構成
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/demos/arm-asm-s2s/azuredeploy.json
コマンド ライン
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentAzure クロス プラットフォーム コマンド ライン インターフェイスのインストールと構成
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/demos/arm-asm-s2s/azuredeploy.json