{"id":19129445,"url":"https://github.com/launchbynttdata/tf-azurerm-module_collection-hub_network","last_synced_at":"2026-02-27T01:10:49.719Z","repository":{"id":230268712,"uuid":"777298352","full_name":"launchbynttdata/tf-azurerm-module_collection-hub_network","owner":"launchbynttdata","description":null,"archived":false,"fork":false,"pushed_at":"2025-04-21T19:31:44.000Z","size":246,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-04-21T20:38:39.810Z","etag":null,"topics":["azure","infrastructure-as-code","platform-automation","reference","terraform"],"latest_commit_sha":null,"homepage":null,"language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/launchbynttdata.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-03-25T15:31:44.000Z","updated_at":"2025-04-21T19:31:26.000Z","dependencies_parsed_at":"2024-03-28T19:35:42.837Z","dependency_job_id":"eda1bd08-edc0-4837-9f90-58e59d9b3ae2","html_url":"https://github.com/launchbynttdata/tf-azurerm-module_collection-hub_network","commit_stats":null,"previous_names":["launchbynttdata/tf-azurerm-module_collection-hub_network"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/launchbynttdata/tf-azurerm-module_collection-hub_network","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchbynttdata%2Ftf-azurerm-module_collection-hub_network","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchbynttdata%2Ftf-azurerm-module_collection-hub_network/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchbynttdata%2Ftf-azurerm-module_collection-hub_network/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchbynttdata%2Ftf-azurerm-module_collection-hub_network/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/launchbynttdata","download_url":"https://codeload.github.com/launchbynttdata/tf-azurerm-module_collection-hub_network/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/launchbynttdata%2Ftf-azurerm-module_collection-hub_network/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29880011,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T23:51:21.483Z","status":"ssl_error","status_checked_at":"2026-02-26T23:50:46.793Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["azure","infrastructure-as-code","platform-automation","reference","terraform"],"created_at":"2024-11-09T06:07:31.841Z","updated_at":"2026-02-27T01:10:49.713Z","avatar_url":"https://github.com/launchbynttdata.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tf-azurerm-module_collection-hub_network\n\n[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n[![License: CC BY-NC-ND 4.0](https://img.shields.io/badge/License-CC_BY--NC--ND_4.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-nd/4.0/)\n\n## Overview\n\nThis module\n- Creates the standard names for the resources to be deployed\n- Creates\n  - Resource group for the VNET and related resource's\n  - Virtual network to be treated as hub virtual network\n  - Firewall along with private and public IP addresses\n  - Firewall Policy\n  - Rules attached to the policy\n\n## Pre-Commit hooks\n\n[.pre-commit-config.yaml](.pre-commit-config.yaml) file defines certain `pre-commit` hooks that are relevant to terraform, golang and common linting tasks. There are no custom hooks added.\n\n`commitlint` hook enforces commit message in certain format. The commit contains the following structural elements, to communicate intent to the consumers of your commit messages:\n\n- **fix**: a commit of the type `fix` patches a bug in your codebase (this correlates with PATCH in Semantic Versioning).\n- **feat**: a commit of the type `feat` introduces a new feature to the codebase (this correlates with MINOR in Semantic Versioning).\n- **BREAKING CHANGE**: a commit that has a footer `BREAKING CHANGE:`, or appends a `!` after the type/scope, introduces a breaking API change (correlating with MAJOR in Semantic Versioning). A BREAKING CHANGE can be part of commits of any type.\nfooters other than BREAKING CHANGE: \u003cdescription\u003e may be provided and follow a convention similar to git trailer format.\n- **build**: a commit of the type `build` adds changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)\n- **chore**: a commit of the type `chore` adds changes that don't modify src or test files\n- **ci**: a commit of the type `ci` adds changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)\n- **docs**: a commit of the type `docs` adds documentation only changes\n- **perf**: a commit of the type `perf` adds code change that improves performance\n- **refactor**: a commit of the type `refactor` adds code change that neither fixes a bug nor adds a feature\n- **revert**: a commit of the type `revert` reverts a previous commit\n- **style**: a commit of the type `style` adds code changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)\n- **test**: a commit of the type `test` adds missing tests or correcting existing tests\n\nBase configuration used for this project is [commitlint-config-conventional (based on the Angular convention)](https://github.com/conventional-changelog/commitlint/tree/master/@commitlint/config-conventional#type-enum)\n\nIf you are a developer using vscode, [this](https://marketplace.visualstudio.com/items?itemName=joshbolduc.commitlint) plugin may be helpful.\n\n`detect-secrets-hook` prevents new secrets from being introduced into the baseline. TODO: INSERT DOC LINK ABOUT HOOKS\n\nIn order for `pre-commit` hooks to work properly\n\n- You need to have the pre-commit package manager installed. [Here](https://pre-commit.com/#install) are the installation instructions.\n- `pre-commit` would install all the hooks when commit message is added by default except for `commitlint` hook. `commitlint` hook would need to be installed manually using the command below\n\n```\npre-commit install --hook-type commit-msg\n```\n\n## To test the resource group module locally\n\n1. For development/enhancements to this module locally, you'll need to install all of its components. This is controlled by the `configure` target in the project's [`Makefile`](./Makefile). Before you can run `configure`, familiarize yourself with the variables in the `Makefile` and ensure they're pointing to the right places.\n\n```\nmake configure\n```\n\nThis adds in several files and directories that are ignored by `git`. They expose many new Make targets.\n\n2. _THIS STEP APPLIES ONLY TO MICROSOFT AZURE. IF YOU ARE USING A DIFFERENT PLATFORM PLEASE SKIP THIS STEP._ The first target you care about is `env`. This is the common interface for setting up environment variables. The values of the environment variables will be used to authenticate with cloud provider from local development workstation.\n\n`make configure` command will bring down `azure_env.sh` file on local workstation. Devloper would need to modify this file, replace the environment variable values with relevant values.\n\nThese environment variables are used by `terratest` integration suit.\n\nService principle used for authentication(value of ARM_CLIENT_ID) should have below privileges on resource group within the subscription.\n\n```\n\"Microsoft.Resources/subscriptions/resourceGroups/write\"\n\"Microsoft.Resources/subscriptions/resourceGroups/read\"\n\"Microsoft.Resources/subscriptions/resourceGroups/delete\"\n```\n\nThen run this make target to set the environment variables on developer workstation.\n\n```\nmake env\n```\n\n3. The first target you care about is `check`.\n\n**Pre-requisites**\nBefore running this target it is important to ensure that, developer has created files mentioned below on local workstation under root directory of git repository that contains code for primitives/segments. Note that these files are `azure` specific. If primitive/segment under development uses any other cloud provider than azure, this section may not be relevant.\n\n- A file named `provider.tf` with contents below\n\n```\nprovider \"azurerm\" {\n  features {}\n}\n```\n\n- A file named `terraform.tfvars` which contains key value pair of variables used.\n\nNote that since these files are added in `gitignore` they would not be checked in into primitive/segment's git repo.\n\nAfter creating these files, for running tests associated with the primitive/segment, run\n\n```\nmake check\n```\n\nIf `make check` target is successful, developer is good to commit the code to primitive/segment's git repo.\n\n`make check` target\n\n- runs `terraform commands` to `lint`,`validate` and `plan` terraform code.\n- runs `conftests`. `conftests` make sure `policy` checks are successful.\n- runs `terratest`. This is integration test suit.\n- runs `opa` tests\n\u003c!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK --\u003e\n## Requirements\n\n| Name | Version |\n|------|---------|\n| \u003ca name=\"requirement_terraform\"\u003e\u003c/a\u003e [terraform](#requirement\\_terraform) | \u003c= 1.5.5 |\n| \u003ca name=\"requirement_azurerm\"\u003e\u003c/a\u003e [azurerm](#requirement\\_azurerm) | ~\u003e 3.77 |\n\n## Providers\n\nNo providers.\n\n## Modules\n\n| Name | Source | Version |\n|------|--------|---------|\n| \u003ca name=\"module_resource_names\"\u003e\u003c/a\u003e [resource\\_names](#module\\_resource\\_names) | terraform.registry.launch.nttdata.com/module_library/resource_name/launch | ~\u003e 1.0 |\n| \u003ca name=\"module_resource_group\"\u003e\u003c/a\u003e [resource\\_group](#module\\_resource\\_group) | terraform.registry.launch.nttdata.com/module_primitive/resource_group/azurerm | ~\u003e 1.0 |\n| \u003ca name=\"module_network\"\u003e\u003c/a\u003e [network](#module\\_network) | terraform.registry.launch.nttdata.com/module_collection/virtual_network/azurerm | ~\u003e 1.1.0 |\n| \u003ca name=\"module_firewall\"\u003e\u003c/a\u003e [firewall](#module\\_firewall) | terraform.registry.launch.nttdata.com/module_primitive/firewall/azurerm | ~\u003e 1.0 |\n| \u003ca name=\"module_firewall_policy\"\u003e\u003c/a\u003e [firewall\\_policy](#module\\_firewall\\_policy) | terraform.registry.launch.nttdata.com/module_primitive/firewall_policy/azurerm | ~\u003e 1.0 |\n| \u003ca name=\"module_firewall_policy_rule_collection_group\"\u003e\u003c/a\u003e [firewall\\_policy\\_rule\\_collection\\_group](#module\\_firewall\\_policy\\_rule\\_collection\\_group) | terraform.registry.launch.nttdata.com/module_primitive/firewall_policy_rule_collection_group/azurerm | ~\u003e 1.0 |\n\n## Resources\n\nNo resources.\n\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|------|---------|:--------:|\n| \u003ca name=\"input_resource_names_map\"\u003e\u003c/a\u003e [resource\\_names\\_map](#input\\_resource\\_names\\_map) | A map of key to resource\\_name that will be used by tf-launch-module\\_library-resource\\_name to generate resource names | \u003cpre\u003emap(object({\u003cbr\u003e    name       = string\u003cbr\u003e    max_length = optional(number, 60)\u003cbr\u003e    region     = optional(string, \"eastus2\")\u003cbr\u003e  }))\u003c/pre\u003e | \u003cpre\u003e{\u003cbr\u003e  \"firewall\": {\u003cbr\u003e    \"max_length\": 80,\u003cbr\u003e    \"name\": \"fw\"\u003cbr\u003e  },\u003cbr\u003e  \"firewall_policy\": {\u003cbr\u003e    \"max_length\": 80,\u003cbr\u003e    \"name\": \"fwplcy\"\u003cbr\u003e  },\u003cbr\u003e  \"fw_plcy_rule_colln_grp\": {\u003cbr\u003e    \"max_length\": 80,\u003cbr\u003e    \"name\": \"fwplcyrulecollngrp\"\u003cbr\u003e  },\u003cbr\u003e  \"hub_vnet\": {\u003cbr\u003e    \"max_length\": 80,\u003cbr\u003e    \"name\": \"hubvnet\"\u003cbr\u003e  },\u003cbr\u003e  \"hub_vnet_ip_configuration\": {\u003cbr\u003e    \"max_length\": 80,\u003cbr\u003e    \"name\": \"ipconfig\"\u003cbr\u003e  },\u003cbr\u003e  \"log_analytics_workspace\": {\u003cbr\u003e    \"max_length\": 80,\u003cbr\u003e    \"name\": \"law\"\u003cbr\u003e  },\u003cbr\u003e  \"public_ip\": {\u003cbr\u003e    \"max_length\": 80,\u003cbr\u003e    \"name\": \"pip\"\u003cbr\u003e  },\u003cbr\u003e  \"resource_group\": {\u003cbr\u003e    \"max_length\": 80,\u003cbr\u003e    \"name\": \"hubrg\"\u003cbr\u003e  }\u003cbr\u003e}\u003c/pre\u003e | no |\n| \u003ca name=\"input_instance_env\"\u003e\u003c/a\u003e [instance\\_env](#input\\_instance\\_env) | Number that represents the instance of the environment. | `number` | `0` | no |\n| \u003ca name=\"input_instance_resource\"\u003e\u003c/a\u003e [instance\\_resource](#input\\_instance\\_resource) | Number that represents the instance of the resource. | `number` | `0` | no |\n| \u003ca name=\"input_logical_product_family\"\u003e\u003c/a\u003e [logical\\_product\\_family](#input\\_logical\\_product\\_family) | (Required) Name of the product family for which the resource is created.\u003cbr\u003e    Example: org\\_name, department\\_name. | `string` | `\"launch\"` | no |\n| \u003ca name=\"input_logical_product_service\"\u003e\u003c/a\u003e [logical\\_product\\_service](#input\\_logical\\_product\\_service) | (Required) Name of the product service for which the resource is created.\u003cbr\u003e    For example, backend, frontend, middleware etc. | `string` | `\"network\"` | no |\n| \u003ca name=\"input_class_env\"\u003e\u003c/a\u003e [class\\_env](#input\\_class\\_env) | (Required) Environment where resource is going to be deployed. For example. dev, qa, uat | `string` | `\"dev\"` | no |\n| \u003ca name=\"input_network\"\u003e\u003c/a\u003e [network](#input\\_network) | Attributes of virtual network to be created. | \u003cpre\u003eobject({\u003cbr\u003e    resource_group_name = string\u003cbr\u003e    location            = string\u003cbr\u003e    vnet_name           = string\u003cbr\u003e    address_space       = optional(list(string), [\"10.0.0.0/16\"])\u003cbr\u003e    subnets = map(object({\u003cbr\u003e      prefix = string\u003cbr\u003e      delegation = optional(map(object({\u003cbr\u003e        service_name    = string\u003cbr\u003e        service_actions = list(string)\u003cbr\u003e      })), {})\u003cbr\u003e      service_endpoints                             = optional(list(string), []),\u003cbr\u003e      private_endpoint_network_policies_enabled     = optional(bool, false)\u003cbr\u003e      private_link_service_network_policies_enabled = optional(bool, false)\u003cbr\u003e      network_security_group_id                     = optional(string, null)\u003cbr\u003e      route_table_id                                = optional(string, null)\u003cbr\u003e    }))\u003cbr\u003e    bgp_community = optional(string, null)\u003cbr\u003e    ddos_protection_plan = optional(object(\u003cbr\u003e      {\u003cbr\u003e        enable = bool\u003cbr\u003e        id     = string\u003cbr\u003e      }\u003cbr\u003e    ), null)\u003cbr\u003e    dns_servers      = optional(list(string), [])\u003cbr\u003e    nsg_ids          = optional(map(string), {})\u003cbr\u003e    route_tables_ids = optional(map(string), {})\u003cbr\u003e    tags             = optional(map(string), {})\u003cbr\u003e  })\u003c/pre\u003e | n/a | yes |\n| \u003ca name=\"input_location\"\u003e\u003c/a\u003e [location](#input\\_location) | Azure region to use | `string` | n/a | yes |\n| \u003ca name=\"input_firewall\"\u003e\u003c/a\u003e [firewall](#input\\_firewall) | Attributes to create a azure firewall | \u003cpre\u003eobject({\u003cbr\u003e    logs_destinations_ids = list(string)\u003cbr\u003e    subnet_cidr           = optional(string)\u003cbr\u003e    additional_public_ips = optional(list(object(\u003cbr\u003e      {\u003cbr\u003e        name                 = string,\u003cbr\u003e        public_ip_address_id = string\u003cbr\u003e    })), [])\u003cbr\u003e    application_rule_collections = optional(list(object(\u003cbr\u003e      {\u003cbr\u003e        name     = string,\u003cbr\u003e        priority = number,\u003cbr\u003e        action   = string,\u003cbr\u003e        rules = list(object(\u003cbr\u003e          { name             = string,\u003cbr\u003e            source_addresses = list(string),\u003cbr\u003e            source_ip_groups = list(string),\u003cbr\u003e            target_fqdns     = list(string),\u003cbr\u003e            protocols = list(object(\u003cbr\u003e              { port = string,\u003cbr\u003e            type = string }))\u003cbr\u003e          }\u003cbr\u003e        ))\u003cbr\u003e    })))\u003cbr\u003e    custom_diagnostic_settings_name = optional(string)\u003cbr\u003e    custom_firewall_name            = optional(string)\u003cbr\u003e    dns_servers                     = optional(string)\u003cbr\u003e    extra_tags                      = optional(map(string))\u003cbr\u003e    firewall_private_ip_ranges      = optional(list(string))\u003cbr\u003e    ip_configuration_name           = optional(string)\u003cbr\u003e    network_rule_collections = optional(list(object({\u003cbr\u003e      name     = string,\u003cbr\u003e      priority = number,\u003cbr\u003e      action   = string,\u003cbr\u003e      rules = list(object({\u003cbr\u003e        name                  = string,\u003cbr\u003e        source_addresses      = list(string),\u003cbr\u003e        source_ip_groups      = optional(list(string)),\u003cbr\u003e        destination_ports     = list(string),\u003cbr\u003e        destination_addresses = list(string),\u003cbr\u003e        destination_ip_groups = optional(list(string)),\u003cbr\u003e        destination_fqdns     = optional(list(string)),\u003cbr\u003e        protocols             = list(string)\u003cbr\u003e      }))\u003cbr\u003e    })))\u003cbr\u003e    public_ip_zones = optional(list(number))\u003cbr\u003e    sku_tier        = string\u003cbr\u003e    zones           = optional(list(number))\u003cbr\u003e  })\u003c/pre\u003e | `null` | no |\n| \u003ca name=\"input_firewall_policy_rule_collection_group_priority\"\u003e\u003c/a\u003e [firewall\\_policy\\_rule\\_collection\\_group\\_priority](#input\\_firewall\\_policy\\_rule\\_collection\\_group\\_priority) | (Required) The priority of the Firewall Policy Rule Collection Group. The range is 100-65000. | `number` | n/a | yes |\n| \u003ca name=\"input_application_rule_collection\"\u003e\u003c/a\u003e [application\\_rule\\_collection](#input\\_application\\_rule\\_collection) | (Optional) The Application Rule Collection to use in this Firewall Policy Rule Collection Group. | \u003cpre\u003elist(object({\u003cbr\u003e    name     = string\u003cbr\u003e    action   = string\u003cbr\u003e    priority = number\u003cbr\u003e    rule = list(object({\u003cbr\u003e      name        = string\u003cbr\u003e      description = optional(string)\u003cbr\u003e      protocols = optional(list(object({\u003cbr\u003e        type = string\u003cbr\u003e        port = number\u003cbr\u003e      })))\u003cbr\u003e      http_headers = optional(list(object({\u003cbr\u003e        name  = string\u003cbr\u003e        value = string\u003cbr\u003e      })))\u003cbr\u003e      source_addresses      = optional(list(string))\u003cbr\u003e      source_ip_groups      = optional(list(string))\u003cbr\u003e      destination_addresses = optional(list(string))\u003cbr\u003e      destination_urls      = optional(list(string))\u003cbr\u003e      destination_fqdns     = optional(list(string))\u003cbr\u003e      destination_fqdn_tags = optional(list(string))\u003cbr\u003e      terminate_tls         = optional(bool)\u003cbr\u003e      web_categories        = optional(list(string))\u003cbr\u003e    }))\u003cbr\u003e  }))\u003c/pre\u003e | `[]` | no |\n| \u003ca name=\"input_network_rule_collection\"\u003e\u003c/a\u003e [network\\_rule\\_collection](#input\\_network\\_rule\\_collection) | (Optional) The Network Rule Collection to use in this Firewall Policy Rule Collection Group. | \u003cpre\u003elist(object({\u003cbr\u003e    name     = string\u003cbr\u003e    action   = string\u003cbr\u003e    priority = number\u003cbr\u003e    rule = list(object({\u003cbr\u003e      name                  = string\u003cbr\u003e      description           = optional(string)\u003cbr\u003e      protocols             = list(string)\u003cbr\u003e      destination_ports     = list(string)\u003cbr\u003e      source_addresses      = optional(list(string))\u003cbr\u003e      source_ip_groups      = optional(list(string))\u003cbr\u003e      destination_addresses = optional(list(string))\u003cbr\u003e      destination_fqdns     = optional(list(string))\u003cbr\u003e    }))\u003cbr\u003e  }))\u003c/pre\u003e | `[]` | no |\n| \u003ca name=\"input_nat_rule_collection\"\u003e\u003c/a\u003e [nat\\_rule\\_collection](#input\\_nat\\_rule\\_collection) | (Optional) The NAT Rule Collection to use in this Firewall Policy Rule Collection Group. | \u003cpre\u003elist(object({\u003cbr\u003e    name     = string\u003cbr\u003e    action   = string\u003cbr\u003e    priority = number\u003cbr\u003e    rule = list(object({\u003cbr\u003e      name               = string\u003cbr\u003e      description        = optional(string)\u003cbr\u003e      protocols          = list(string)\u003cbr\u003e      source_addresses   = optional(list(string))\u003cbr\u003e      source_ip_groups   = optional(list(string))\u003cbr\u003e      destination_ports  = optional(list(string))\u003cbr\u003e      translated_address = optional(string)\u003cbr\u003e      translated_port    = number\u003cbr\u003e      translated_fqdn    = optional(string)\u003cbr\u003e    }))\u003cbr\u003e  }))\u003c/pre\u003e | `[]` | no |\n\n## Outputs\n\n| Name | Description |\n|------|-------------|\n| \u003ca name=\"output_resource_group_id\"\u003e\u003c/a\u003e [resource\\_group\\_id](#output\\_resource\\_group\\_id) | resource group id |\n| \u003ca name=\"output_resource_group_name\"\u003e\u003c/a\u003e [resource\\_group\\_name](#output\\_resource\\_group\\_name) | resource group name |\n| \u003ca name=\"output_vnet_names\"\u003e\u003c/a\u003e [vnet\\_names](#output\\_vnet\\_names) | Map of vnet names where key in input key in network map and value is name of vnet that got created. |\n| \u003ca name=\"output_vnet_ids\"\u003e\u003c/a\u003e [vnet\\_ids](#output\\_vnet\\_ids) | Map of vnet names where key in input key in network map and value is id of vnet that got created. |\n| \u003ca name=\"output_vnet_subnets\"\u003e\u003c/a\u003e [vnet\\_subnets](#output\\_vnet\\_subnets) | Map of vnet names where key in input key in network map and value is id of the subnets that got created. |\n| \u003ca name=\"output_vnet_locations\"\u003e\u003c/a\u003e [vnet\\_locations](#output\\_vnet\\_locations) | Map of vnet names where key in input key in network map and value is location of vnet that got created. |\n| \u003ca name=\"output_vnet_address_spaces\"\u003e\u003c/a\u003e [vnet\\_address\\_spaces](#output\\_vnet\\_address\\_spaces) | Map of vnet names where key in input key in network map and value is address of vnet that got created. |\n| \u003ca name=\"output_vnet_subnet_name_id_map\"\u003e\u003c/a\u003e [vnet\\_subnet\\_name\\_id\\_map](#output\\_vnet\\_subnet\\_name\\_id\\_map) | Outputs a subnet name to ID map for each Vnet |\n| \u003ca name=\"output_firewall_ids\"\u003e\u003c/a\u003e [firewall\\_ids](#output\\_firewall\\_ids) | Firewall generated ids |\n| \u003ca name=\"output_firewall_names\"\u003e\u003c/a\u003e [firewall\\_names](#output\\_firewall\\_names) | Firewall names |\n| \u003ca name=\"output_firewall_private_ip_addresses\"\u003e\u003c/a\u003e [firewall\\_private\\_ip\\_addresses](#output\\_firewall\\_private\\_ip\\_addresses) | Firewall private IPs |\n| \u003ca name=\"output_firewall_public_ip_addresses\"\u003e\u003c/a\u003e [firewall\\_public\\_ip\\_addresses](#output\\_firewall\\_public\\_ip\\_addresses) | Firewall public IPs |\n| \u003ca name=\"output_firewall_subnet_ids\"\u003e\u003c/a\u003e [firewall\\_subnet\\_ids](#output\\_firewall\\_subnet\\_ids) | IDs of the subnet attached to the firewall |\n| \u003ca name=\"output_firewall_policy_id\"\u003e\u003c/a\u003e [firewall\\_policy\\_id](#output\\_firewall\\_policy\\_id) | The ID of the Firewall Policy. |\n| \u003ca name=\"output_firewall_policy_child_policies\"\u003e\u003c/a\u003e [firewall\\_policy\\_child\\_policies](#output\\_firewall\\_policy\\_child\\_policies) | The child policies of the Firewall Policy. |\n| \u003ca name=\"output_firewall_policy_firewalls\"\u003e\u003c/a\u003e [firewall\\_policy\\_firewalls](#output\\_firewall\\_policy\\_firewalls) | A list of references to Azure Firewalls that this Firewall Policy is associated with. |\n| \u003ca name=\"output_firewall_policy_rule_collection_groups\"\u003e\u003c/a\u003e [firewall\\_policy\\_rule\\_collection\\_groups](#output\\_firewall\\_policy\\_rule\\_collection\\_groups) | A list of references to Azure Firewall Rule Collection Groups that this Firewall Policy is associated with. |\n| \u003ca name=\"output_firewall_policy_name\"\u003e\u003c/a\u003e [firewall\\_policy\\_name](#output\\_firewall\\_policy\\_name) | The name of the Firewall Policy. |\n| \u003ca name=\"output_firewall_policy_rule_collection_group_name\"\u003e\u003c/a\u003e [firewall\\_policy\\_rule\\_collection\\_group\\_name](#output\\_firewall\\_policy\\_rule\\_collection\\_group\\_name) | Value of the Azure Firewall policy rule collection group name |\n| \u003ca name=\"output_firewall_policy_rule_collection_group_id\"\u003e\u003c/a\u003e [firewall\\_policy\\_rule\\_collection\\_group\\_id](#output\\_firewall\\_policy\\_rule\\_collection\\_group\\_id) | The ID of the Firewall Policy Rule Collection Group. |\n\u003c!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flaunchbynttdata%2Ftf-azurerm-module_collection-hub_network","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flaunchbynttdata%2Ftf-azurerm-module_collection-hub_network","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flaunchbynttdata%2Ftf-azurerm-module_collection-hub_network/lists"}