Skip to content

Commit 28ee423

Browse files
Merge pull request #274840 from tomvcassidy/patch-1
fixing typo in powershell quickstart
2 parents e78afa0 + 81e3a87 commit 28ee423

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/container-instances/container-instances-quickstart-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ New-AzResourceGroup -Name myResourceGroup -Location EastUS
4141
You can expose your containers to the internet by specifying one or more ports to open, a DNS name label, or both. In this quickstart, you deploy a container with a DNS name label so it's publicly reachable. In this guide, we'll do both, but first, you need to create a port object in PowerShell for your container instance to use.
4242

4343
```azurepowershell-interactive
44-
$port = New-AzContainerInstancePortOject -Port 80 -Protocol TCP
44+
$port = New-AzContainerInstancePortObject -Port 80 -Protocol TCP
4545
```
4646

4747
## Create a container group

0 commit comments

Comments
 (0)