Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Co-authored-by: Patricia Huang <pathuang@pathuang-dev>
  • Loading branch information
pathuang-sia and Patricia Huang authored Jun 6, 2023
1 parent 1c598e6 commit 6449803
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
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

0 comments on commit 6449803

Please sign in to comment.