NEW FEATURE: Add resource for manager attributes configuration
Closed this issue ยท 0 comments
anupamaloke commented
Community Note
- Please vote on this issue by adding a ๐ reaction to the original issue to help the community and maintainers prioritize this request
- Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
- If you are interested in working on this issue or have submitted a pull request, please leave a comment
Description
Create a new Redfish resource for provisioning manager attributes.
New or Affected Resource(s)
new resource
Potential Terraform Configuration
An example terraform plan for manager attribute configuration could be:
# Copy-paste your Terraform configurations here - for large Terraform configs,
# please use a service like Dropbox and share a link to the ZIP file.
resource "redfish_manager" "manager" {
for_each = var.rack1
redfish_server {
user = each.value.user
password = each.value.password
endpoint = each.value.endpoint
ssl_insecure = each.value.ssl_insecure
}
attributes = {
"SNMPAlert.1.Destination" = "192.168.10.11"
"SNMPAlert.2.Destination" = "192.168.10.12"
"SNMPAlert.3.Destination" = "192.168.10.13"
}
}