You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generate a unique identifier for platforms that can be used to see if your hitting the same box over multiple runs. See if we already have a uuid on the box (via chef client or something else) else create one based on the criteria below.
Unix
cat /etc/machine-id || /var/lib/dbus/machine-id || /var/db/dbus/machine-id if valid
Description
Generate a unique identifier for platforms that can be used to see if your hitting the same box over multiple runs. See if we already have a uuid on the box (via chef client or something else) else create one based on the criteria below.
Unix
cat /etc/machine-id
||/var/lib/dbus/machine-id
||/var/db/dbus/machine-id
if validtaken from https://github.com/rails/rails/blob/a9dc45459abcd9437085f4dd0aa3c9d0e64e062f/activesupport/lib/active_support/core_ext/digest/uuid.rb#L16
/etc/machine-uuid
or local if that is not possibleOSX
hardware uuid
system_profiler SPHardwareDataType | awk '/UUID/ { print $3; }'
Windows
wmic csproduct get UUID
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography\MachineGuid
in the registryAWS API
Use the account_id
Azure
Use subscription_id, fallback to tenant_id
The text was updated successfully, but these errors were encountered: