Skip to content

Instantly share code, notes, and snippets.

@BeenzSyed
Created January 4, 2016 21:31
Show Gist options
  • Save BeenzSyed/97ed3932bc2053fd32e0 to your computer and use it in GitHub Desktop.
Save BeenzSyed/97ed3932bc2053fd32e0 to your computer and use it in GitHub Desktop.
Heat template with sleep
heat_template_version: 2014-10-16
description: |
Cloud init with a sleep
resources:
instance1:
type: OS::Nova::Server
properties:
image: 4b14a92e-84c8-4770-9245-91ecb8501cc2 # CentOS
flavor: 1 GB Performance
config_drive: True
user_data_format: RAW
user_data: |
#!/bin/bash
sleep 600
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment