You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/api-management/api-management-howto-integrate-internal-vnet-appgateway.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,13 +84,13 @@ If you use Azure Active Directory or third-party authentication, enable the [coo
84
84
85
85
## Setting Variables
86
86
87
-
Throughout this guide, you will need to define several variables.
87
+
Throughout this guide, you will need to define several variables. Naming is based on the [Cloud Adoption Framework abbreviation](/azure/cloud-adoption-framework/ready/azure-best-practices/resource-abbreviations) guidance.
88
88
89
89
```powershell
90
90
# These variables must be changed.
91
91
$subscriptionId = "00000000-0000-0000-0000-000000000000" # GUID of your Azure subscription
92
92
$domain = "contoso.net" # The custom domain for your certificate
93
-
$apimServiceName = "ContosoApi" # API Management service instance name, must be globally unique
93
+
$apimServiceName = "apim-contoso" # API Management service instance name, must be globally unique
94
94
$apimDomainNameLabel = $apimServiceName # Domain name label for API Management's public IP address, must be globally unique
95
95
$apimAdminEmail = "[email protected]" # Administrator's email address - use your email address
96
96
@@ -110,10 +110,10 @@ $managementCertPfxPassword = "certificatePassword123" # Password for man
110
110
111
111
112
112
# These variables may be changed.
113
-
$resGroupName = "apim-appGw-RG" # Resource group name that will hold all assets
113
+
$resGroupName = "rg-apim-agw" # Resource group name that will hold all assets
114
114
$location = "West US" # Azure region that will hold all assets
115
115
$apimOrganization = "Contoso" # Organization name
116
-
$appgwName = "apim-app-gw" # The name of the Application Gateway
116
+
$appgwName = "agw-contoso" # The name of the Application Gateway
117
117
```
118
118
119
119
## Create a resource group for Resource Manager
@@ -157,7 +157,7 @@ The following example shows how to create a virtual network by using Resource Ma
157
157
Internet -SourcePortRange * -DestinationAddressPrefix * -DestinationPortRange 443
1. Create a network security group (NSG) and NSG rules for the API Management subnet. [API Management stv2 requires several specific NSG rules](api-management-using-with-internal-vnet.md#enable-vnet-connection).
@@ -177,7 +177,7 @@ The following example shows how to create a virtual network by using Resource Ma
1. Create a virtual network named **appgwvnet** in resource group **apim-appGw-RG** for the West US region. Use the prefix 10.0.0.0/16 with subnets 10.0.0.0/24 and 10.0.1.0/24.
195
+
1. Create a virtual network named **vnet-contoso**. Use the prefix 10.0.0.0/16 with subnets 10.0.0.0/24 and 10.0.1.0/24.
0 commit comments