Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4432,11 +4432,26 @@
"type": "string",
"enum": [
"Enabled",
"Disabled"
"Disabled",
"SecuredByPerimeter"
],
"x-ms-enum": {
"name": "PublicNetworkAccess",
"modelAsString": true
"modelAsString": true,
"values": [
{
"value": "Enabled",
"description": "Inbound/Outbound to the managedCluster is allowed."
},
{
"value": "Disabled",
"description": "Inbound traffic to managedCluster is disabled, traffic from managedCluster is allowed."
},
{
"value": "SecuredByPerimeter",
"description": "Inbound/Outbound traffic is managed by Microsoft.Network/NetworkSecurityPerimeters."
}
]
},
"title": "PublicNetworkAccess of the managedCluster",
"description": "Allow or deny public network access for AKS"
Expand Down