From 3a3fdcc5d24883c73ba786e26af21f83d1b874ee Mon Sep 17 00:00:00 2001 From: Inaki Fernandez Date: Thu, 2 Dec 2021 10:12:20 +0100 Subject: [PATCH] testing mkdocs 8: annotations in code --- docs/terraform.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/terraform.md b/docs/terraform.md index 6296eed5..3d70fd8a 100644 --- a/docs/terraform.md +++ b/docs/terraform.md @@ -340,6 +340,8 @@ resource_group_name = azurerm_resource_group.aks_rg.name address_prefixes = ["10.x.x.0/24"] } ``` +1. :man_raising_hand: VNet +2. :man_raising_hand: Subnet nodes (and pods with Azure CNI network plugin) ``` tf # 07-aks-cluster.tf @@ -351,9 +353,6 @@ dns_service_ip = "10.x.x.10" docker_bridge_cidr = "172.17.0.1/16" # Default. You can reuse this range across different AKS clusters. } ``` - -1. :man_raising_hand: VNet -2. :man_raising_hand: Subnet nodes (and pods with Azure CNI network plugin) 3. :man_raising_hand: Network Profile - [Azure-Samples/private-aks-cluster-terraform-devops 🌟](https://github.com/Azure-Samples/private-aks-cluster-terraform-devops) **This sample shows how to create a private AKS cluster using Terraform and Azure DevOps.**