> 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-resources-with-cost/microsoft.network/public-ip-address.md).

# Public IP Address

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

## Creating a Standard Public IP

```yaml
defaults:
  resource_group: rg1

resources:
  - type: "Microsoft.Network/publicIPAddresses"
    name: "lb-public-ip"
    api_version: "2025-05-01"
    sku:
      # Default value is 'Basic'
      name: "Standard"
```

### Example plan output

```
lb-public-ip (action: create, monthly: $3.65, change: +100%)
  => Public IP (Standard, Static) (price: $0.005/Hr, monthly: $3.65)
```
