Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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 @@ -331,6 +331,25 @@
}
}
},
"Secret": {
"description": "Secret definition.",
"type": "object",
"properties": {
"name": {
"description": "Secret Name.",
"type": "string"
},
"value": {
"description": "Secret Value.",
"type": "string",
"x-ms-mutability": [
"create",
"update"
],
"x-ms-secret": true
}
}
},
"Template": {
"description": "Container App versioned application definition.\nDefines the desired state of an immutable revision.\nAny changes to this section Will result in a new revision being created",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@
"description": "Collection of secrets used by a Container app",
"type": "array",
"items": {
"$ref": "#/definitions/Secret"
"$ref": "./CommonDefinitions.json#/definitions/Secret"
},
"x-ms-identifiers": [
"name"
Expand Down Expand Up @@ -513,25 +513,6 @@
}
}
},
"Secret": {
"description": "Container App Secret.",
"type": "object",
"properties": {
"name": {
"description": "Secret Name.",
"type": "string"
},
"value": {
"description": "Secret Value.",
"type": "string",
"x-ms-mutability": [
"create",
"update"
],
"x-ms-secret": true
}
}
},
"TrafficWeight": {
"description": "Traffic weight assigned to a revision",
"type": "object",
Expand Down
Loading