diff --git a/SoftLayer/CLI/hardware/list.py b/SoftLayer/CLI/hardware/list.py index 42b298155..0dae57a11 100644 --- a/SoftLayer/CLI/hardware/list.py +++ b/SoftLayer/CLI/hardware/list.py @@ -8,6 +8,7 @@ from SoftLayer.CLI import environment from SoftLayer.CLI import formatting from SoftLayer.CLI import helpers +from SoftLayer import utils # pylint: disable=unnecessary-lambda @@ -22,7 +23,8 @@ mask='activeTransaction[id, transactionStatus[name, friendlyName]]'), column_helper.Column( 'created_by', - ('billingItem', 'orderItem', 'order', 'userRecord', 'username')), + lambda created_by: utils.lookup(created_by, 'billingItem', 'orderItem', 'order', 'userRecord', 'username'), + mask='billingItem[id,orderItem[id,order[id,userRecord[username]]]]'), column_helper.Column( 'tags', lambda server: formatting.tags(server.get('tagReferences')),