Skip to content

Commit a431788

Browse files
authored
Add properties for secrets from KV (#22652)
* add properties for secrets from KV * typo * remove unnecessay examples
1 parent 2f01a7c commit a431788

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

specification/app/resource-manager/Microsoft.App/preview/2022-11-01-preview/CommonDefinitions.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -555,6 +555,14 @@
555555
"update"
556556
],
557557
"x-ms-secret": true
558+
},
559+
"identity": {
560+
"description": "Resource ID of a managed identity to authenticate with Azure Key Vault, or System to use a system-assigned identity.",
561+
"type": "string"
562+
},
563+
"keyVaultUrl": {
564+
"description": "Azure Key Vault URL pointing to the secret referenced by the container app.",
565+
"type": "string"
558566
}
559567
}
560568
},

specification/app/resource-manager/Microsoft.App/preview/2022-11-01-preview/ContainerApps.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -881,6 +881,16 @@
881881
"type": "string",
882882
"x-ms-secret": true,
883883
"readOnly": true
884+
},
885+
"identity": {
886+
"description": "Resource ID of a managed identity to authenticate with Azure Key Vault, or System to use a system-assigned identity.",
887+
"type": "string",
888+
"readOnly": true
889+
},
890+
"keyVaultUrl": {
891+
"description": "Azure Key Vault URL pointing to the secret referenced by the container app.",
892+
"type": "string",
893+
"readOnly": true
884894
}
885895
}
886896
},

0 commit comments

Comments
 (0)