첨부 실행 코드는 나눔고딕코딩 폰트를 사용합니다.
728x90
반응형
728x170
$testNSRuleConfig = New-AzNetworkSecurityRuleConfig `
  -Name TestNSGRule `
  -Protocol Tcp `
  -Direction Inbound `
  -Priority 200 `
  -SourceAddressPrefix * `
  -SourcePortRange * `
  -DestinationAddressPrefix * `
  -DestinationPortRange 80 `
  -Access Allow

$testNSG = New-AzNetworkSecurityGroup `
  -ResourceGroupName TestResourceGroup `
  -Location EastUS `
  -Name TestNSG `
  -SecurityRules $testNSRuleConfig


※ TestNSGRule       : 네트워크 보안 그룹 규칙명
   TestResourceGroup : 리소스 그룹명
   EastUS            : 지역명
   TestNSG           : 네트워크 보안 그룹명
728x90
반응형
그리드형(광고전용)
Posted by icodebroker

댓글을 달아 주세요