Skip to content

Commit

Permalink
unused object
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-shandar committed Sep 11, 2017
1 parent 01cc466 commit 144b3a6
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions experiments/Compute.Experiments/AzureRM.Compute.Experiments.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -231,18 +231,6 @@ class SecurityGroup: Resource1 {
}

[object] Create([string] $name, [string] $location, [string] $resourceGroupName) {
$securityRule = @{
Name = $name;
Protocol = "Tcp";
Priority = 1000;
Access = "Allow";
Direction = "Inbound";
SourcePortRange = "*";
SourceAddressPrefix = "*";
DestinationPortRange = 3389;
DestinationAddressPrefix = "*";
}

$securityRuleConfig = New-AzureRmNetworkSecurityRuleConfig `
-Name $name `
-Protocol "Tcp" `
Expand Down

0 comments on commit 144b3a6

Please sign in to comment.