Control vendor-data use - cloud-init 25.1.2 documentation (original) (raw)

View this page

Toggle table of contents sidebar

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 thescripts 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}