~ubuntu-branches/ubuntu/vivid/sahara/vivid-proposed

« back to all changes in this revision

Viewing changes to sahara/resources/instance.heat

  • Committer: Package Import Robot
  • Author(s): Thomas Goirand
  • Date: 2014-09-24 16:34:46 UTC
  • Revision ID: package-import@ubuntu.com-20140924163446-8gu3zscu5e3n9lr2
Tags: upstream-2014.2~b3
ImportĀ upstreamĀ versionĀ 2014.2~b3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
        "%(instance_name)s" : {
 
2
            "Type" : "OS::Nova::Server",
 
3
            "Properties" : {
 
4
                "name" : "%(instance_name)s",
 
5
                "flavor" : "%(flavor_id)s",
 
6
                "image" : "%(image_id)s",
 
7
                "admin_user": "%(image_username)s",
 
8
                %(network_interfaces)s
 
9
                %(key_name)s
 
10
                %(scheduler_hints)s
 
11
                %(security_groups)s
 
12
                "user_data": {
 
13
                    "Fn::Join" : ["\n", [%(userdata)s]]
 
14
                }
 
15
            }
 
16
        }