Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Trusted Launch fields to AgentPoolSecurityProfile #26850

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
7 changes: 7 additions & 0 deletions cSpell.json
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,13 @@
"Noreuse"
]
},
{
"filename": "**/specification/containerservice/resource-manager/Microsoft.ContainerService/aks/**/*json",
"words": [
"vtpm",
"trustedlaunch"
]
},
{
"filename": "**/specification/containerregistry/data-plane/Microsoft.ContainerRegistry/preview/2018-08-10/containerregistry.json",
"words": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7146,6 +7146,14 @@
"sshAccess": {
"$ref": "#/definitions/AgentPoolSSHAccess",
"description": "SSH access method of an agent pool."
},
"enableVTPM": {
"type": "boolean",
"description": "vTPM is a Trusted Launch feature for configuring a dedicated secure vault for keys and measurements held locally on the node. For more details, see aka.ms/aks/trustedlaunch. If not specified, the default is false."
},
"enableSecureBoot": {
"type": "boolean",
"description": "Secure Boot is a feature of Trusted Launch which ensures that only signed operating systems and drivers can boot. For more details, see aka.ms/aks/trustedlaunch. If not specified, the default is false."
}
},
"description": "The security settings of an agent pool."
Expand Down