Skip to content

Commit b0f4f78

Browse files
authored
[ContainerApp] Support peer traffic encryption. (#28159)
1 parent c0b0e6e commit b0f4f78

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

specification/app/resource-manager/Microsoft.App/stable/2024-03-01/ManagedEnvironments.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1259,6 +1259,22 @@
12591259
"$ref": "#/definitions/Mtls"
12601260
}
12611261
}
1262+
},
1263+
"peerTrafficConfiguration": {
1264+
"description": "Peer traffic settings for the Managed Environment",
1265+
"type": "object",
1266+
"properties": {
1267+
"encryption": {
1268+
"description": "Peer traffic encryption settings for the Managed Environment",
1269+
"type": "object",
1270+
"properties": {
1271+
"enabled": {
1272+
"type": "boolean",
1273+
"description": "Boolean indicating whether the peer traffic encryption is enabled"
1274+
}
1275+
}
1276+
}
1277+
}
12621278
}
12631279
},
12641280
"x-ms-client-flatten": true

specification/app/resource-manager/Microsoft.App/stable/2024-03-01/examples/ManagedEnvironments_CreateOrUpdate.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@
5151
"mtls": {
5252
"enabled": true
5353
}
54+
},
55+
"peerTrafficConfiguration": {
56+
"encryption": {
57+
"enabled": true
58+
}
5459
}
5560
}
5661
}

specification/app/resource-manager/Microsoft.App/stable/2024-03-01/examples/ManagedEnvironments_Get.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,11 @@
6565
"mtls": {
6666
"enabled": true
6767
}
68+
},
69+
"peerTrafficConfiguration": {
70+
"encryption": {
71+
"enabled": true
72+
}
6873
}
6974
}
7075
}

0 commit comments

Comments
 (0)