Skip to content

Commit 613ac38

Browse files
committed
Removed use of reserved subnet ip addresses
1 parent 62f0de1 commit 613ac38

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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 |

quickstart/201-k8s-cluster-with-aks-applicationgateway-ingress/variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ variable "virtual_network_name" {
2222

2323
variable "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

2828
variable "aks_subnet_name" {
@@ -32,12 +32,12 @@ variable "aks_subnet_name" {
3232

3333
variable "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

3838
variable "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

4343
variable "app_gateway_name" {

0 commit comments

Comments
 (0)