Skip to content

Instantly share code, notes, and snippets.

@ycombinator
Created September 19, 2014 15:04
Show Gist options
  • Select an option

  • Save ycombinator/a3966adae2710c31b17c to your computer and use it in GitHub Desktop.

Select an option

Save ycombinator/a3966adae2710c31b17c to your computer and use it in GitHub Desktop.
#!/bin/bash
curl -v -X POST \
-H "Content-Type: application/json" \
-H "X-Auth-Token: $OS_AUTH_TOKEN" \
"https://dfw.orchestration.api.rackspacecloud.com/v1/$OS_TENANT_ID/stacks" \
-d '
{
"stack_name": "minecraft_server",
"template_url": "https://raw.githubusercontent.com/rackspace-orchestration-templates/minecraft/master/minecraft-server.yaml",
"params": {
"terms": true
},
"timeout_mins": 5
}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment