
cloud-config-archive is a yaml formated document where the top level should contain an array. Each entry in the array can be one of - dict { 'filename' : 'value' , 'content' : 'value', 'type' : 'value' } filename and type may not be present - scalar(content) if filename and type are not present, they are attempted to be guessed.
17 lines
244 B
Plaintext
17 lines
244 B
Plaintext
#cloud-config-archive
|
|
- type: foo/wark
|
|
filename: bar
|
|
content: |
|
|
This is my payload
|
|
hello
|
|
- this is also payload
|
|
- |
|
|
multi line payload
|
|
here
|
|
-
|
|
type: text/upstart-job
|
|
filename: my-upstart.conf
|
|
content: |
|
|
whats this, yo?
|
|
|