Control vendor data use

The use of vendor data can be controlled by the user. Vendor data can be used (or disabled) with an optional prefix.

For a full list of keys, refer to the scripts vendor module docs.

Example 1

1#cloud-config
2vendor_data: {enabled: true, prefix: /usr/bin/ltrace}

Example 2

1#cloud-config
2vendor_data:
3  enabled: true
4  prefix: [timeout, 30]

Example 3

With this example, vendor data will not be processed.

1#cloud-config
2vendor_data: {enabled: false}