> For the complete documentation index, see [llms.txt](https://docs.mechcloud.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mechcloud.io/cloud-computing/stateless-iac/azure/examples-free-resources/vpc-and-subnet.md).

# Vpc and subnet

{% hint style="info" %}
**Updated**: February 13, 2026
{% endhint %}

## Creating a vpc and subnet with minimal parameters

```
resources:
  - type: "Microsoft.Network/virtualNetworks"
    name: vnet1
    props:
      resource_group: rg1
      address_space:
        address_prefixes:
          - "10.0.0.0/16"
      subnets:
        - name: subnet1
          props: 
            address_prefix: "10.0.1.0/24"
```
