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
  • Loading branch information
Patricia Huang committed May 30, 2023
commit 6fbb7efff712fc4f3c7f67d39def2596dd9bc861
Original file line number Diff line number Diff line change
Expand Up @@ -1208,7 +1208,8 @@
"type": "object",
"properties": {
"vmSize": {
"type": "string"
"type": "string",
"default": "Default"
},
"processors": {
"type": "integer",
Expand Down Expand Up @@ -1383,13 +1384,15 @@
"type": "object",
"properties": {
"enableTPM": {
"type": "boolean"
"type": "boolean",
"default": false
},
"uefiSettings": {
"type": "object",
"properties": {
"secureBootEnabled": {
"type": "boolean",
"default": false,
"description": "Specifies whether secure boot should be enabled on the virtual machine."
}
}
Expand Down Expand Up @@ -1420,7 +1423,11 @@
"properties": {
"name": {
"type": "string",
"description": "Name - Name of the image"
"description": "Name - Name of the image",
"x-ms-mutability": [
"create",
"read"
]
}
},
"description": "Which Image to use for the virtual machine"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1414,13 +1414,15 @@
"type": "object",
"properties": {
"enableTPM": {
"type": "boolean"
"type": "boolean",
"default": false
},
"uefiSettings": {
"type": "object",
"properties": {
"secureBootEnabled": {
"type": "boolean",
"default": false,
"description": "Specifies whether secure boot should be enabled on the virtual machine."
}
}
Expand Down