in libazureinit/src/imds.rs [314:323]
fn deserialization_disable_password_nonsense() {
let os_profile = json!({
"adminUsername": "MinProvAgentUser",
"computerName": "AzTux-MinProvAgent-Test-0001",
"disablePasswordAuthentication": "nonsense"
});
let os_profile: Result<OsProfile, _> =
serde_json::from_value(os_profile);
assert!(os_profile.is_err_and(|err| err.is_data()));
}