Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -3275,6 +3275,10 @@
"windowsProfile": {
"$ref": "#/definitions/AgentPoolWindowsProfile",
"description": "The Windows agent pool's specific profile."
},
"securityProfile": {
"$ref": "#/definitions/AgentPoolSecurityProfile",
"description": "The security settings of an agent pool."
}
},
"description": "Properties for the container service agent pool profile."
Expand Down Expand Up @@ -6145,6 +6149,20 @@
}
}
},
"AgentPoolSecurityProfile": {
"type": "object",
"properties": {
"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."
},
"SysctlConfig": {
"description": "Sysctl settings for Linux agent nodes.",
"type": "object",
Expand Down