Blame doc/examples/cloud-config-launch-index.txt

Packit bc9a3a
#cloud-config
Packit bc9a3a
# vim: syntax=yaml
Packit bc9a3a
Packit bc9a3a
#
Packit bc9a3a
# This is the configuration syntax that can be provided to have
Packit bc9a3a
# a given set of cloud config data show up on a certain launch
Packit bc9a3a
# index (and not other launches) by provided a key here which
Packit bc9a3a
# will act as a filter on the instances userdata. When
Packit bc9a3a
# this key is left out (or non-integer) then the content
Packit bc9a3a
# of this file will always be used for all launch-indexes 
Packit bc9a3a
# (ie the previous behavior).
Packit bc9a3a
launch-index: 5
Packit bc9a3a
Packit bc9a3a
# Upgrade the instance on first boot
Packit bc9a3a
# (ie run apt-get upgrade)
Packit bc9a3a
#
Packit bc9a3a
# Default: false
Packit bc9a3a
#
Packit bc9a3a
apt_upgrade: true
Packit bc9a3a
Packit bc9a3a
# Other yaml keys below...
Packit bc9a3a
# .......
Packit bc9a3a
# .......