Created
          March 9, 2020 18:41 
        
      - 
      
 - 
        
Save mikepfeiffer/248956696c50e6add4b200f4fceef8f4 to your computer and use it in GitHub Desktop.  
    Quick AZ PowerShell Script to Create a Web Server
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | param( | |
| $Name = 'WEB1', | |
| $Location = 'westus2', | |
| $ResourceGroup = 'WebServers' | |
| ) | |
| New-AzResourceGroup -Name $ResourceGroup -Location $Location | |
| $params = @{ | |
| Name = $Name | |
| Location = $Location | |
| ResourceGroup = $ResourceGroup | |
| VirtualNetworkName = "$ResourceGroup-VNET" | |
| SubnetName = "$ResourceGroup-Subnet" | |
| SecurityGroupName = "$Name-NSG" | |
| PublicIpAddressName = 'myPublicIp' | |
| OpenPorts = 80 | |
| } | |
| New-AzVm @params | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment