Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1356,6 +1356,8 @@ MSLISTSTATUS
MSMCAZR
msrp
MSTI
Mtls
mtls
mucho
multiapi
Multiclass
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,23 @@
"name": "RevisionProvisioningState",
"modelAsString": true
}
},
"runningState": {
"description": "Current running state of the revision",
"enum": [
"Running",
"Processing",
"Stopped",
"Degraded",
"Failed",
"Unknown"
],
"type": "string",
"readOnly": true,
"x-ms-enum": {
"name": "RevisionRunningState",
"modelAsString": true
}
}
},
"x-ms-client-flatten": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1126,6 +1126,16 @@
}
}
},
"Mtls": {
"type": "object",
"description": "Configuration properties for mutual TLS authentication",
"properties": {
"enabled": {
"type": "boolean",
"description": "Boolean indicating whether the mutual TLS authentication is enabled"
}
}
},
"ManagedEnvironment": {
"description": "An environment for hosting container apps",
"type": "object",
Expand Down Expand Up @@ -1239,6 +1249,16 @@
"create",
"read"
]
},
"peerAuthentication": {
"description": "Peer authentication settings for the Managed Environment",
"type": "object",
"properties": {
"mtls": {
"description": "Mutual TLS authentication settings for the Managed Environment",
"$ref": "#/definitions/Mtls"
}
}
}
},
"x-ms-client-flatten": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,12 @@
"name": "My-consumption-01",
"workloadProfileType": "Consumption"
}
]
],
"peerAuthentication": {
"mtls": {
"enabled": true
}
}
}
}
},
Expand Down Expand Up @@ -103,7 +108,12 @@
"workloadProfileType": "Consumption"
}
],
"infrastructureResourceGroup": "capp-svc-testcontainerenv-eastus"
"infrastructureResourceGroup": "capp-svc-testcontainerenv-eastus",
"peerAuthentication": {
"mtls": {
"enabled": true
}
}
}
}
},
Expand Down Expand Up @@ -159,7 +169,12 @@
"workloadProfileType": "Consumption"
}
],
"infrastructureResourceGroup": "capp-svc-testcontainerenv-eastus"
"infrastructureResourceGroup": "capp-svc-testcontainerenv-eastus",
"peerAuthentication": {
"mtls": {
"enabled": true
}
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,12 @@
"daprConfiguration": {
"version": "1.9"
},
"infrastructureResourceGroup": "capp-svc-jlaw-demo1-northcentralus"
"infrastructureResourceGroup": "capp-svc-jlaw-demo1-northcentralus",
"peerAuthentication": {
"mtls": {
"enabled": true
}
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
},
"trafficWeight": 80,
"active": true,
"replicas": 1
"replicas": 1,
"runningState": "Running"
}
}
}
Expand Down