Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!
openssl genrsa -des3 -out rootCA.key 4096| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import yaml | |
| import json | |
| import click | |
| import requests | |
| API_VERSION = 'v1beta0' | |
| DEFAULTS = { |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import yaml | |
| import json | |
| import click | |
| import requests | |
| def load_user_spec(api_version): | |
| resp = requests.get('https://my.scalr.net/api/user.{}.yml' |
| # coding: utf-8 | |
| import os | |
| from fabric.api import run, env, cd, roles, task | |
| env.roledefs['prod'] = ['myuser@host'] | |
| env.roledefs['staging'] = ['myuser@host'] |