From 28e20779c20318cf379e624102e4291fc1012b27 Mon Sep 17 00:00:00 2001 From: Xiangyang Yu Date: Fri, 8 Mar 2024 11:26:42 +0800 Subject: [PATCH] [ContainerApp] Support peer traffic encryption. --- .../stable/2024-03-01/ManagedEnvironments.json | 16 ++++++++++++++++ .../ManagedEnvironments_CreateOrUpdate.json | 5 +++++ .../examples/ManagedEnvironments_Get.json | 5 +++++ 3 files changed, 26 insertions(+) diff --git a/specification/app/resource-manager/Microsoft.App/stable/2024-03-01/ManagedEnvironments.json b/specification/app/resource-manager/Microsoft.App/stable/2024-03-01/ManagedEnvironments.json index 3d9c8b2599e7..0dbbbd90c375 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2024-03-01/ManagedEnvironments.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2024-03-01/ManagedEnvironments.json @@ -1259,6 +1259,22 @@ "$ref": "#/definitions/Mtls" } } + }, + "peerTrafficConfiguration": { + "description": "Peer traffic settings for the Managed Environment", + "type": "object", + "properties": { + "encryption": { + "description": "Peer traffic encryption settings for the Managed Environment", + "type": "object", + "properties": { + "enabled": { + "type": "boolean", + "description": "Boolean indicating whether the peer traffic encryption is enabled" + } + } + } + } } }, "x-ms-client-flatten": true diff --git a/specification/app/resource-manager/Microsoft.App/stable/2024-03-01/examples/ManagedEnvironments_CreateOrUpdate.json b/specification/app/resource-manager/Microsoft.App/stable/2024-03-01/examples/ManagedEnvironments_CreateOrUpdate.json index 5af55517bc4c..ae84775ae8f1 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2024-03-01/examples/ManagedEnvironments_CreateOrUpdate.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2024-03-01/examples/ManagedEnvironments_CreateOrUpdate.json @@ -51,6 +51,11 @@ "mtls": { "enabled": true } + }, + "peerTrafficConfiguration": { + "encryption": { + "enabled": true + } } } } diff --git a/specification/app/resource-manager/Microsoft.App/stable/2024-03-01/examples/ManagedEnvironments_Get.json b/specification/app/resource-manager/Microsoft.App/stable/2024-03-01/examples/ManagedEnvironments_Get.json index 1c89db5399f8..011a47ba9dff 100644 --- a/specification/app/resource-manager/Microsoft.App/stable/2024-03-01/examples/ManagedEnvironments_Get.json +++ b/specification/app/resource-manager/Microsoft.App/stable/2024-03-01/examples/ManagedEnvironments_Get.json @@ -65,6 +65,11 @@ "mtls": { "enabled": true } + }, + "peerTrafficConfiguration": { + "encryption": { + "enabled": true + } } } }