Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Systems MMS committed Feb 7, 2022
1 parent d5bfd7b commit 55e60f3
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

## [0.0.1](https://github.com/T-Systems-MMS/terraform-network/tree/0.0.1) (2021-12-17)

[Full Changelog](https://github.com/T-Systems-MMS/terraform-network/compare/764b194a74b2f4f25c51cefb2988d5d46651976b...0.0.1)



\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
83 changes: 83 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,84 @@


<!-- BEGIN_TF_DOCS -->
# network

This module manages Azure Network Configuration.

<-- This file is autogenerated, please do not change. -->

## Requirements

| Name | Version |
|------|---------|
| terraform | >=0.12 |
| azurerm | >=2.19.0 |

## Providers

| Name | Version |
|------|---------|
| azurerm | >=2.19.0 |

## Resources

| Name | Type |
|------|------|
| azurerm_network_interface.network_interface | resource |
| azurerm_network_interface_security_group_association.network_interface_security_group_association | resource |
| azurerm_network_security_group.network_security_group | resource |
| azurerm_private_endpoint.private_endpoint | resource |
| azurerm_public_ip.public_ip | resource |
| azurerm_subnet.subnet | resource |
| azurerm_virtual_network.virtual_network | resource |

## Inputs

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| network_interface | resource definition, default settings are defined within locals and merged with var settings | `any` | `{}` | no |
| network_interface_security_group_association | resource definition, default settings are defined within locals and merged with var settings | `any` | `{}` | no |
| network_security_group | resource definition, default settings are defined within locals and merged with var settings | `any` | `{}` | no |
| private_endpoint | resource definition, default settings are defined within locals and merged with var settings | `any` | `{}` | no |
| public_ip | resource definition, default settings are defined within locals and merged with var settings | `any` | `{}` | no |
| subnet | resource definition, default settings are defined within locals and merged with var settings | `any` | `{}` | no |
| virtual_network | resource definition, default settings are defined within locals and merged with var settings | `any` | `{}` | no |

## Outputs

| Name | Description |
|------|-------------|
| network_interface | azurerm_network_interface results |
| public_ip | azurerm_public_ip results |
| subnet | azurerm_subnet results |
| virtual_network | azurerm_virtual_network results |

## Examples

```hcl
module "network" {
source = "../modules/azure/terraform-network"
virtual_network = {
env = {
name = "service-env-vn"
location = "westeurope"
resource_group_name = "service-env-rg"
address_space = ["192.30.100.0/23"]
tags = {
service = "service_name"
}
}
}
subnet = {
aks = {
name = "service-aks-sub"
resource_group_name = "service-env-rg"
virtual_network_name = module.network.virtual_network.env.name
address_prefixes = ["192.30.100.0/24"]
enforce_private_link_endpoint_network_policies = true
service_endpoints = ["Microsoft.AzureCosmosDB"]
}
}
}
```
<!-- END_TF_DOCS -->

0 comments on commit 55e60f3

Please sign in to comment.