Created
July 19, 2020 06:05
-
-
Save austinsonger/62cf5f7451f05e91bc2e3b2d2fdd7b54 to your computer and use it in GitHub Desktop.
Creating a single reserved IPv6 public IP
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
| $myOwnIPv6Address = New-AzPublicIpAddress ` | |
| -name PIPv6_<Region> ` | |
| -ResourceGroup <Resource Group Name> ` | |
| -Location "<Region>" ` | |
| -Sku Standard ` | |
| -allocationMethod static ` | |
| -IpAddressVersion IPv6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment