I am trying to launch an aws ec2 instance with coreos, providing a cloud-config, which just ignores some parts like putting an rsa_private_key or runcmd. Anyway, the hostname has been set successfully though, so the config was basically processed.
I broke down the whole config to the most simple thing and validated it with the coreos validator which tells me Line 5:unrecognized key "runcmd".
#cloud-config
hostname: "node01"
runcmd:
- touch /test.txt
I can't see any syntax error, what's wrong here?
For completeness, here's my whole cloud-config.yml: http://pastebin.com/YnrWqj7G