Public IP address allows inbound access based on tier in Azure
Last updated:
AZURENETWORK
Public IP address in Azure have 2 SKUs:
- Standard
- Basic (will be retired in 2025)
Standard SKU is secure by default, does not allow any inbound traffic. Basic allows traffic by default. [[202404141419 Network Security Groups|NSGs]] can be used to control access.
If we do not specify SKU, Public IP takes Basic SKU.
Faced this issue when doing the exercise for network routing.
Bicep
Name | Description | Value |
---|---|---|
name | Name of a public IP address SKU. | ‘Basic’ ‘Standard’ |
tier | Tier of a public IP address SKU. | ‘Global’ ‘Regional’ |
sku: { name: 'string' tier: 'string' }
[[202408041111 Create public ip address in Azure|Create public ip address in Azure]]