2.2 - Network Blueprint

Whose in your network?

This blueprint can be added to the Tuono Environment that contains the previous blueprints:

  1. Module 101 Location Blueprint

When combined with module 103 security. It will create a network with associated subnet into our previously designated region and resource group.

#
# Tuono Hands-On Lab
# HOL-102
# This is an example blueprint that creates a basic network
#
---
networking:
  network:
    vnet-walkthrough:
      range: 10.0.0.0/16
      scope: public
  subnet:
    subnet-walkthrough:
      range: 10.0.0.0/24
      network: vnet-walkthrough
      scope: public
      firewall: fw-external-access # Module 3 defines the firewall

Last updated

Was this helpful?