Open
Description
Terraform CLI and Terraform Redfish Provider Version
Terraform 1.9.5
Redfish Provider Version 1.4.0
Server(s) details and firmware version
Dell R760
iDRAC 9
BIOS Version 2.2.8
Firmware Version 7.10.50.10
Affected Resource(s)
resource "redfish_bios"
Terraform Configuration Files
resource "redfish_bios" "bios" {
for_each = var.rack1
redfish_server {
user = each.value.user
password = each.value.password
endpoint = each.value.endpoint
ssl_insecure = each.value.ssl_insecure
}
// Bios attributes to be altered
attributes = {
"SerialComm" = "Off"
}
/* Reset parameters to be applied after bios settings are applied
list of possible value:
[ ForceRestart, GracefulRestart, PowerCycle]
*/
reset_type = "ForceRestart"
reset_timeout = "120"
// The maximum amount of time to wait for the bios job to be completed
bios_job_timeout = "1200"
// by default, the resource uses the first system
# system_id = "System.Embedded.1"
}
Expected Behavior
Attributes should be applied to BIOS.
Actual Behavior
The attributes appear as "pending" settings in the iDRAC web interface, and the server reboots, but the settings are not applied. A "BIOS.Setup" job does not appear in the job queue.
Resource then times out after bios_job_timeout.
Steps to Reproduce
- terraform apply
Metadata
Assignees
Labels
No labels