diff --git a/changelogs/fragments/3233-include-thermal-sensor-status-via-redfish_info.yaml b/changelogs/fragments/3233-include-thermal-sensor-status-via-redfish_info.yaml new file mode 100644 index 0000000000..baed989fbf --- /dev/null +++ b/changelogs/fragments/3233-include-thermal-sensor-status-via-redfish_info.yaml @@ -0,0 +1,2 @@ +minor_changes: + - redfish_info - include ``Status`` property for Thermal objects when querying Thermal properties via ``GetChassisThermals`` command (https://github.com/ansible-collections/community.general/issues/3232). diff --git a/plugins/module_utils/redfish_utils.py b/plugins/module_utils/redfish_utils.py index c861820edf..0f8e6630ba 100644 --- a/plugins/module_utils/redfish_utils.py +++ b/plugins/module_utils/redfish_utils.py @@ -1887,7 +1887,7 @@ class RedfishUtils(object): 'LowerThresholdCritical', 'LowerThresholdFatal', 'LowerThresholdNonCritical', 'MaxReadingRangeTemp', 'MinReadingRangeTemp', 'ReadingCelsius', 'RelatedItem', - 'SensorNumber'] + 'SensorNumber', 'Status'] # Go through list for chassis_uri in self.chassis_uris: