forked from mspnp/aks-baseline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azuredeploy.parameters.prod.json
36 lines (36 loc) · 1.32 KB
/
azuredeploy.parameters.prod.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"location": {
"value": "eastus2"
},
"targetVnetResourceId": {
"value": "/subscriptions/[subscription id]/resourceGroups/rg-enterprise-networking-spokes-[region]/providers/Microsoft.Network/virtualNetworks/vnet-hub-spoke-BU0001A0008-00"
},
"clusterAdminMicrosoftEntraGroupObjectId": {
"value": "[guid--security-group-objectid-that-will-become-cluster-admin]"
},
"a0008NamespaceReaderMicrosoftEntraGroupObjectId": {
"value": "[guid--security-group-objectid-that-will-become-namespace-a0008-reader]"
},
"k8sControlPlaneAuthorizationTenantId": {
"value": "[guid--your-cluster-APIs-authorization-tenant-ID]"
},
"appGatewayListenerCertificate": {
"value": "[base64 cert data]"
},
"aksIngressControllerCertificate": {
"value": "[base64 public cert data]"
},
"clusterAuthorizedIPRanges": {
"value": "[array of IP ranges, like ['168.196.25.0/24','73.140.245.0/28', AzureFirewallIP/32] ]"
},
"domainName": {
"value": "[the value of DOMAIN_NAME_AKS_BASELINE (e.g. contoso.com)]"
},
"gitOpsBootstrappingRepoHttpsUrl": {
"value": "https://github.com/mspnp/aks-baseline"
}
}
}