in libazureinit/src/imds.rs [303:311]
fn deserialization_disable_password_false() {
let os_profile = json!({
"adminUsername": "MinProvAgentUser",
"computerName": "AzTux-MinProvAgent-Test-0001",
"disablePasswordAuthentication": "false"
});
let os_profile: OsProfile = serde_json::from_value(os_profile).unwrap();
assert_eq!(os_profile.disable_password_authentication, false);
}