From 43d71d0f59f3bb0ef845aa57c072f0499d9cbee7 Mon Sep 17 00:00:00 2001 From: Inaki Fernandez Date: Thu, 2 Dec 2021 10:04:54 +0100 Subject: [PATCH] testing mkdocs 8: annotations in code --- docs/terraform.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/terraform.md b/docs/terraform.md index 17c8fa9c..1837e0fb 100644 --- a/docs/terraform.md +++ b/docs/terraform.md @@ -325,7 +325,8 @@ - [**Boilerplate: 25-Azure-DevOps-Terraform-Azure-AKS** 🌟🌟🌟](https://github.com/stacksimplify/azure-aks-kubernetes-masterclass/tree/master/25-Azure-DevOps-Terraform-Azure-AKS) - [PDF presentation 🌟](https://github.com/stacksimplify/azure-aks-kubernetes-masterclass/tree/master/ppt-presentation) -``` tf="01-main.tf" +``` tf +# 01-main.tf resource "azurerm_virtual_network" "example" { # (1) name = "${var.environment}-network" location = azurerm_resource_group.aks_rg.location @@ -343,7 +344,8 @@ 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" +``` tf +# 07-aks-cluster.tf network_profile { # (3) load_balancer_sku = "Standard" network_plugin = "azure" # Azure CNI because windows node pools arenot supported by kubenet (unfortunately)