Ubuntu Pastebin

Paste from Adam Israel at Thu, 16 Jun 2016 14:51:26 +0000

Download as text
1
2
3
4
5
6
7
import amulet
from collections import OrderedDict

d = amulet.Deployment()
d.add('charm', units=2, constraints=OrderedDict([
    ("instance-type", "m3.medium")
]))
Download as text