File tree Expand file tree Collapse file tree
quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ This template creates an Application Gateway Ingress Controller in Azure Kuberne
2323| ` aks_service_principal_client_secret ` | Secret of the service principal. Used by AKS to manage Azure. | |
2424| ` aks_service_principal_object_id ` | Object ID of the service principal. | |
2525| ` virtual_network_name ` | Virtual network name. | aksVirtualNetwork |
26- | ` virtual_network_address_prefix ` | VNET address prefix. | 15.0 .0.0/8 |
26+ | ` virtual_network_address_prefix ` | VNET address prefix. | 192.168 .0.0/16 |
2727| ` aks_subnet_name ` | Subnet name. | kubesubnet |
28- | ` aks_subnet_address_prefix ` | Subnet address prefix. | 15.0 .0.0/16 |
29- | ` app_gateway_subnet_address_prefix ` | Subnet server IP address. | 15.1 .0.0/16 |
28+ | ` aks_subnet_address_prefix ` | Subnet address prefix. | 192.168 .0.0/16 |
29+ | ` app_gateway_subnet_address_prefix ` | Subnet server IP address. | 192.168 .0.0/16 |
3030| ` app_gateway_name ` | Name of the Application Gateway. | ApplicationGateway1 |
3131| ` app_gateway_sku ` | Name of the Application Gateway SKU. | Standard_v2 |
3232| ` app_gateway_tier ` | Tier of the Application Gateway tier. | Standard_v2 |
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ variable "virtual_network_name" {
2222
2323variable "virtual_network_address_prefix" {
2424 description = " VNET address prefix"
25- default = " 15.0 .0.0/8 "
25+ default = " 192.168 .0.0/16 "
2626}
2727
2828variable "aks_subnet_name" {
@@ -32,12 +32,12 @@ variable "aks_subnet_name" {
3232
3333variable "aks_subnet_address_prefix" {
3434 description = " Subnet address prefix."
35- default = " 15.0 .0.0/16"
35+ default = " 192.168 .0.0/16"
3636}
3737
3838variable "app_gateway_subnet_address_prefix" {
3939 description = " Subnet server IP address."
40- default = " 15.1 .0.0/16"
40+ default = " 192.168 .0.0/16"
4141}
4242
4343variable "app_gateway_name" {
You can’t perform that action at this time.
0 commit comments