Skip to content

Commit 27baff6

Browse files
committed
fixed merge conflicts
1 parent e36ab78 commit 27baff6

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

azure-ps/az-ps-create-linux-vm.ps1

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,11 @@
5353
[CmdletBinding()]
5454
param(
5555
[Parameter(Mandatory)]
56-
[string]$AzResourceGroupName,
56+
[string]$AzResourceGroupName = 'myResourceGroup',
5757
[Parameter(Mandatory)]
58-
[string]$AzVmName,
58+
[string]$AzVmName = 'myVmName',
5959
[Parameter(Mandatory)]
60-
<<<<<<< HEAD
61-
[ValidateSet('eastus', 'eastus2', 'germany', 'northeurope', 'germanywestcentral')]
62-
=======
60+
6361
[ValidateSet(
6462
'eastus', 'eastus2', 'southcentralus', 'westus2',
6563
'westus3', 'australiaeast', 'southeastasia', 'northeurope',
@@ -79,16 +77,15 @@ param(
7977
'francesouth', 'germanynorth', 'norwaywest', 'switzerlandwest',
8078
'ukwest', 'uaecentral', 'brazilsoutheast'
8179
)]
82-
>>>>>>> d27ed172490c2a99af476a122f8fcfd7a8ae8575
8380
[string]$AzLocation,
8481
[Parameter(Mandatory)]
85-
[string]$AzImageName,
82+
[string]$AzImageName = 'myImageName',
8683
[Parameter(Mandatory)]
87-
[string]$AzPublicIpAddressName,
84+
[string]$AzPublicIpAddressName = 'myPublicIpAddressName',
8885
[Parameter(Mandatory)]
89-
[Securestring]$AZOpenPorts,
86+
[int]$AZOpenPorts = 22,
9087
[Parameter(Mandatory)]
91-
[string]$AzVmSize,
88+
[string]$AzVmSize = 'Standard_B1s',
9289
[Parameter(Mandatory)]
9390
[string]$AzSshKeyName
9491

0 commit comments

Comments
 (0)