1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#cloud-config-archive
---
- content: "\n blah: true\n launch-index: 3\n"
type: text/cloud-config
- content: "\n blah: true\n launch-index: 4\n"
type: text/cloud-config
- content: The quick brown fox jumps over the lazy dog
filename: b0.txt
launch-index: 0
type: plain/text
- content: The quick brown fox jumps over the lazy dog
filename: b3.txt
launch-index: 3
type: plain/text
- content: The quick brown fox jumps over the lazy dog
filename: b2.txt
launch-index: 2
type: plain/text
- content: '#!/bin/bash \n echo "stuff"'
filename: b2.txt
launch-index: 2
- content: '#!/bin/bash \n echo "stuff"'
filename: b2.txt
launch-index: 1
- content: '#!/bin/bash \n echo "stuff"'
filename: b2.txt
# Use a string to see if conversion works
launch-index: "1"
...
|