rax 24.9 KB
Newer Older
Matt Martz committed
1
#!/usr/bin/python
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible.  If not, see <http://www.gnu.org/licenses/>.

17 18
# This is a DOCUMENTATION stub specific to this module, it extends
# a documentation fragment located in ansible.utils.module_docs_fragments
19 20 21
DOCUMENTATION = '''
---
module: rax
22
short_description: create / delete an instance in Rackspace Public Cloud
23
description:
Matt Martz committed
24 25
     - creates / deletes a Rackspace Public Cloud instance and optionally
       waits for it to be 'running'.
26 27
version_added: "1.2"
options:
28 29 30 31 32 33 34
  auto_increment:
    description:
      - Whether or not to increment a single number with the name of the
        created servers. Only applicable when used with the I(group) attribute
        or meta key.
    default: yes
    version_added: 1.5
Matt Martz committed
35
  count:
36
    description:
Matt Martz committed
37 38 39 40 41 42 43 44 45
      - number of instances to launch
    default: 1
    version_added: 1.4
  count_offset:
    description:
      - number count to start at
    default: 1
    version_added: 1.4
  disk_config:
46
    description:
Matt Martz committed
47
      - Disk partitioning strategy
48 49 50
    choices:
      - auto
      - manual
Matt Martz committed
51 52 53
    version_added: '1.4'
    default: auto
  exact_count:
54
    description:
Matt Martz committed
55 56 57 58
      - Explicitly ensure an exact count of instances, used with
        state=active/present
    default: no
    version_added: 1.4
59 60 61 62 63 64 65 66 67 68 69
  extra_client_args:
    description:
      - A hash of key/value pairs to be used when creating the cloudservers
        client. This is considered an advanced option, use it wisely and
        with caution.
    version_added: 1.6
  extra_create_args:
    description:
      - A hash of key/value pairs to be used when creating a new server.
        This is considered an advanced option, use it wisely and with caution.
    version_added: 1.6
Matt Martz committed
70
  files:
71
    description:
Matt Martz committed
72
      - Files to insert into the instance. remotefilename:localcontent
73 74 75
    default: null
  flavor:
    description:
Matt Martz committed
76
      - flavor to use for the instance
77
    default: null
Matt Martz committed
78 79 80 81 82
  group:
    description:
      - host group to assign to server, is also used for idempotent operations
        to ensure a specific number of instances
    version_added: 1.4
83 84
  image:
    description:
Matt Martz committed
85
      - image to use for the instance. Can be an C(id), C(human_id) or C(name)
86
    default: null
Matt Martz committed
87
  instance_ids:
88
    description:
Matt Martz committed
89 90 91
      - list of instance ids, currently only used when state='absent' to
        remove instances
    version_added: 1.4
92 93
  key_name:
    description:
Matt Martz committed
94
      - key pair to use on the instance
95
    default: null
96 97
    aliases:
      - keypair
Matt Martz committed
98
  meta:
99
    description:
Matt Martz committed
100
      - A hash of metadata to associate with the instance
101
    default: null
Matt Martz committed
102 103 104 105 106 107 108 109 110
  name:
    description:
      - Name to give the instance
    default: null
  networks:
    description:
      - The network to attach to the instances. If specified, you must include
        ALL networks including the public and private interfaces. Can be C(id)
        or C(label).
111 112 113
    default:
      - public
      - private
Matt Martz committed
114 115
    version_added: 1.4
  state:
116
    description:
Matt Martz committed
117
      - Indicate desired state of the resource
118 119 120
    choices:
      - present
      - absent
Matt Martz committed
121
    default: present
122 123
  wait:
    description:
Matt Martz committed
124
      - wait for the instance to be in state 'running' before returning
125
    default: "no"
126 127 128
    choices:
      - "yes"
      - "no"
129 130
  wait_timeout:
    description:
Matt Martz committed
131
      - how long before wait gives up, in seconds
132
    default: 300
Matt Martz committed
133
author: Jesse Keating, Matt Martz
134
extends_documentation_fragment: rackspace.openstack
135 136
'''

137
EXAMPLES = '''
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
- name: Build a Cloud Server
  gather_facts: False
  tasks:
    - name: Server build request
      local_action:
        module: rax
        credentials: ~/.raxpub
        name: rax-test1
        flavor: 5
        image: b11d9567-e412-4255-96b9-bd63ab23bcfe
        files:
          /root/.ssh/authorized_keys: /home/localuser/.ssh/id_rsa.pub
          /root/test.txt: /home/localuser/test.txt
        wait: yes
        state: present
Matt Martz committed
153 154 155
        networks:
          - private
          - public
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
      register: rax

- name: Build an exact count of cloud servers with incremented names
  hosts: local
  gather_facts: False
  tasks:
    - name: Server build requests
      local_action:
        module: rax
        credentials: ~/.raxpub
        name: test%03d.example.org
        flavor: performance1-1
        image: ubuntu-1204-lts-precise-pangolin
        state: present
        count: 10
        count_offset: 10
        exact_count: yes
        group: test
        wait: yes
      register: rax
176 177
'''

178
import os
Matt Martz committed
179
import re
Matt Martz committed
180 181
import time

Matt Martz committed
182 183
from uuid import UUID
from types import NoneType
184 185 186

try:
    import pyrax
Matt Martz committed
187
    HAS_PYRAX = True
188
except ImportError:
Matt Martz committed
189
    HAS_PYRAX = False
190

Matt Martz committed
191 192 193 194 195 196
ACTIVE_STATUSES = ('ACTIVE', 'BUILD', 'HARD_REBOOT', 'MIGRATING', 'PASSWORD',
                   'REBOOT', 'REBUILD', 'RESCUE', 'RESIZE', 'REVERT_RESIZE')
FINAL_STATUSES = ('ACTIVE', 'ERROR')
NON_CALLABLES = (basestring, bool, dict, int, list, NoneType)
PUBLIC_NET_ID = "00000000-0000-0000-0000-000000000000"
SERVICE_NET_ID = "11111111-1111-1111-1111-111111111111"
197 198


Matt Martz committed
199 200 201 202
def rax_slugify(value):
    return 'rax_%s' % (re.sub('[^\w-]', '_', value).lower().lstrip('_'))


203
def server_to_dict(obj):
Matt Martz committed
204 205 206 207 208 209 210 211 212 213 214 215 216 217
    instance = {}
    for key in dir(obj):
        value = getattr(obj, key)
        if (isinstance(value, NON_CALLABLES) and not key.startswith('_')):
            key = rax_slugify(key)
            instance[key] = value

    for attr in ['id', 'accessIPv4', 'name', 'status']:
        instance[attr] = instance.get(rax_slugify(attr))

    return instance


def create(module, names, flavor, image, meta, key_name, files,
218
           wait, wait_timeout, disk_config, group, nics,
219
           extra_create_args, existing=[]):
Matt Martz committed
220 221 222 223 224 225 226 227 228

    cs = pyrax.cloudservers
    changed = False

    # Handle the file contents
    for rpath in files.keys():
        lpath = os.path.expanduser(files[rpath])
        try:
            fileobj = open(lpath, 'r')
229
            files[rpath] = fileobj.read()
Matt Martz committed
230 231 232 233 234 235 236 237 238
        except Exception, e:
            module.fail_json(msg='Failed to load %s' % lpath)
    try:
        servers = []
        for name in names:
            servers.append(cs.servers.create(name=name, image=image,
                                             flavor=flavor, meta=meta,
                                             key_name=key_name,
                                             files=files, nics=nics,
239 240
                                             disk_config=disk_config,
                                             **extra_create_args))
Matt Martz committed
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
    except Exception, e:
        module.fail_json(msg='%s' % e.message)
    else:
        changed = True

    if wait:
        end_time = time.time() + wait_timeout
        infinite = wait_timeout == 0
        while infinite or time.time() < end_time:
            for server in servers:
                try:
                    server.get()
                except:
                    server.status == 'ERROR'

            if not filter(lambda s: s.status not in FINAL_STATUSES,
                          servers):
                break
            time.sleep(5)

    success = []
    error = []
    timeout = []
    for server in servers:
        try:
            server.get()
        except:
            server.status == 'ERROR'
269
        instance = server_to_dict(server)
Matt Martz committed
270 271 272 273 274 275 276
        if server.status == 'ACTIVE' or not wait:
            success.append(instance)
        elif server.status == 'ERROR':
            error.append(instance)
        elif wait:
            timeout.append(instance)

277 278 279
    untouched = [server_to_dict(s) for s in existing]
    instances = success + untouched

Matt Martz committed
280 281 282
    results = {
        'changed': changed,
        'action': 'create',
283
        'instances': instances,
Matt Martz committed
284 285 286 287
        'success': success,
        'error': error,
        'timeout': timeout,
        'instance_ids': {
288
            'instances': [i['id'] for i in instances],
Matt Martz committed
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
            'success': [i['id'] for i in success],
            'error': [i['id'] for i in error],
            'timeout': [i['id'] for i in timeout]
        }
    }

    if timeout:
        results['msg'] = 'Timeout waiting for all servers to build'
    elif error:
        results['msg'] = 'Failed to build all servers'

    if 'msg' in results:
        module.fail_json(**results)
    else:
        module.exit_json(**results)


306
def delete(module, instance_ids, wait, wait_timeout, kept=[]):
Matt Martz committed
307 308
    cs = pyrax.cloudservers

309
    changed = False
Matt Martz committed
310
    instances = {}
311 312
    servers = []

Matt Martz committed
313 314 315 316 317 318 319 320 321 322 323
    for instance_id in instance_ids:
        servers.append(cs.servers.get(instance_id))

    for server in servers:
        try:
            server.delete()
        except Exception, e:
            module.fail_json(msg=e.message)
        else:
            changed = True

324
        instance = server_to_dict(server)
Matt Martz committed
325 326 327 328 329 330 331 332 333
        instances[instance['id']] = instance

    # If requested, wait for server deletion
    if wait:
        end_time = time.time() + wait_timeout
        infinite = wait_timeout == 0
        while infinite or time.time() < end_time:
            for server in servers:
                instance_id = server.id
334
                try:
Matt Martz committed
335 336 337
                    server.get()
                except:
                    instances[instance_id]['status'] = 'DELETED'
338
                    instances[instance_id]['rax_status'] = 'DELETED'
Matt Martz committed
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353

            if not filter(lambda s: s['status'] not in ('', 'DELETED',
                                                        'ERROR'),
                          instances.values()):
                break

            time.sleep(5)

    timeout = filter(lambda s: s['status'] not in ('', 'DELETED', 'ERROR'),
                     instances.values())
    error = filter(lambda s: s['status'] in ('ERROR'),
                   instances.values())
    success = filter(lambda s: s['status'] in ('', 'DELETED'),
                     instances.values())

354 355
    instances = [server_to_dict(s) for s in kept]

Matt Martz committed
356 357 358
    results = {
        'changed': changed,
        'action': 'delete',
359
        'instances': instances,
Matt Martz committed
360 361 362 363
        'success': success,
        'error': error,
        'timeout': timeout,
        'instance_ids': {
364
            'instances': [i['id'] for i in instances],
Matt Martz committed
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
            'success': [i['id'] for i in success],
            'error': [i['id'] for i in error],
            'timeout': [i['id'] for i in timeout]
        }
    }

    if timeout:
        results['msg'] = 'Timeout waiting for all servers to delete'
    elif error:
        results['msg'] = 'Failed to delete all servers'

    if 'msg' in results:
        module.fail_json(**results)
    else:
        module.exit_json(**results)


def cloudservers(module, state, name, flavor, image, meta, key_name, files,
                 wait, wait_timeout, disk_config, count, group,
384
                 instance_ids, exact_count, networks, count_offset,
385
                 auto_increment, extra_create_args):
Matt Martz committed
386 387
    cs = pyrax.cloudservers
    cnw = pyrax.cloud_networks
Matt Martz committed
388 389 390 391 392
    if not cnw:
        module.fail_json(msg='Failed to instantiate client. This '
                             'typically indicates an invalid region or an '
                             'incorrectly capitalized region name.')

Matt Martz committed
393 394 395 396 397 398 399 400
    servers = []

    # Add the group meta key
    if group and 'group' not in meta:
        meta['group'] = group
    elif 'group' in meta and group is None:
        group = meta['group']

Matt Martz committed
401 402 403 404 405 406 407 408 409
    # Normalize and ensure all metadata values are strings
    for k, v in meta.items():
        if isinstance(v, list):
            meta[k] = ','.join(['%s' % i for i in v])
        elif isinstance(v, dict):
            meta[k] = json.dumps(v)
        elif not isinstance(v, basestring):
            meta[k] = '%s' % v

410 411 412 413 414 415 416 417 418
    # When using state=absent with group, the absent block won't match the
    # names properly. Use the exact_count functionality to decrease the count
    # to the desired level
    was_absent = False
    if group is not None and state == 'absent':
        exact_count = True
        state = 'present'
        was_absent = True

Matt Martz committed
419 420 421 422 423 424
    # Check if the provided image is a UUID and if not, search for an
    # appropriate image using human_id and name
    if image:
        try:
            UUID(image)
        except ValueError:
425
            try:
Matt Martz committed
426
                image = cs.images.find(human_id=image)
427 428
            except(cs.exceptions.NotFound,
                   cs.exceptions.NoUniqueMatch):
Matt Martz committed
429 430
                try:
                    image = cs.images.find(name=image)
431 432
                except (cs.exceptions.NotFound,
                        cs.exceptions.NoUniqueMatch):
Matt Martz committed
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
                    module.fail_json(msg='No matching image found (%s)' %
                                         image)

        image = pyrax.utils.get_id(image)

    # Check if the provided network is a UUID and if not, search for an
    # appropriate network using label
    nics = []
    if networks:
        for network in networks:
            try:
                UUID(network)
            except ValueError:
                if network.lower() == 'public':
                    nics.extend(cnw.get_server_networks(PUBLIC_NET_ID))
                elif network.lower() == 'private':
                    nics.extend(cnw.get_server_networks(SERVICE_NET_ID))
                else:
451
                    try:
Matt Martz committed
452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476
                        network_obj = cnw.find_network_by_label(network)
                    except (pyrax.exceptions.NetworkNotFound,
                            pyrax.exceptions.NetworkLabelNotUnique):
                        module.fail_json(msg='No matching network found (%s)' %
                                             network)
                    else:
                        nics.extend(cnw.get_server_networks(network_obj))
            else:
                nics.extend(cnw.get_server_networks(network))

    # act on the state
    if state == 'present':
        for arg, value in dict(name=name, flavor=flavor,
                               image=image).iteritems():
            if not value:
                module.fail_json(msg='%s is required for the "rax" module' %
                                     arg)

        # Idempotent ensurance of a specific count of servers
        if exact_count is not False:
            # See if we can find servers that match our options
            if group is None:
                module.fail_json(msg='"group" must be provided when using '
                                     '"exact_count"')
            else:
477 478
                if auto_increment:
                    numbers = set()
Matt Martz committed
479

480 481 482 483 484 485 486 487
                    try:
                        name % 0
                    except TypeError, e:
                        if e.message.startswith('not all'):
                            name = '%s%%d' % name
                        else:
                            module.fail_json(msg=e.message)

488
                    pattern = re.sub(r'%\d*[sd]', r'(\d+)', name)
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510
                    for server in cs.servers.list():
                        if server.metadata.get('group') == group:
                            servers.append(server)
                        match = re.search(pattern, server.name)
                        if match:
                            number = int(match.group(1))
                            numbers.add(number)

                    number_range = xrange(count_offset, count_offset + count)
                    available_numbers = list(set(number_range)
                                             .difference(numbers))
                else:
                    for server in cs.servers.list():
                        if server.metadata.get('group') == group:
                            servers.append(server)

                # If state was absent but the count was changed,
                # assume we only wanted to remove that number of instances
                if was_absent:
                    diff = len(servers) - count
                    if diff < 0:
                        count = 0
Matt Martz committed
511
                    else:
512 513
                        count = diff

Matt Martz committed
514 515
                if len(servers) > count:
                    state = 'absent'
516
                    kept = servers[:count]
Matt Martz committed
517 518 519 520
                    del servers[:count]
                    instance_ids = []
                    for server in servers:
                        instance_ids.append(server.id)
521 522
                    delete(module, instance_ids, wait, wait_timeout,
                           kept=kept)
Matt Martz committed
523
                elif len(servers) < count:
524 525 526 527 528 529 530 531
                    if auto_increment:
                        names = []
                        name_slice = count - len(servers)
                        numbers_to_use = available_numbers[:name_slice]
                        for number in numbers_to_use:
                            names.append(name % number)
                    else:
                        names = [name] * (count - len(servers))
Matt Martz committed
532
                else:
533 534 535 536 537 538 539
                    instances = []
                    instance_ids = []
                    for server in servers:
                        instances.append(server_to_dict(server))
                        instance_ids.append(server.id)
                    module.exit_json(changed=False, action=None,
                                     instances=instances,
Matt Martz committed
540
                                     success=[], error=[], timeout=[],
541
                                     instance_ids={'instances': instance_ids,
Matt Martz committed
542 543 544 545
                                                   'success': [], 'error': [],
                                                   'timeout': []})
        else:
            if group is not None:
546 547
                if auto_increment:
                    numbers = set()
Matt Martz committed
548

549 550 551 552 553 554 555 556
                    try:
                        name % 0
                    except TypeError, e:
                        if e.message.startswith('not all'):
                            name = '%s%%d' % name
                        else:
                            module.fail_json(msg=e.message)

557
                    pattern = re.sub(r'%\d*[sd]', r'(\d+)', name)
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
                    for server in cs.servers.list():
                        if server.metadata.get('group') == group:
                            servers.append(server)
                        match = re.search(pattern, server.name)
                        if match:
                            number = int(match.group(1))
                            numbers.add(number)

                    number_range = xrange(count_offset,
                                          count_offset + count + len(numbers))
                    available_numbers = list(set(number_range)
                                             .difference(numbers))
                    names = []
                    numbers_to_use = available_numbers[:count]
                    for number in numbers_to_use:
                        names.append(name % number)
                else:
                    names = [name] * count
Matt Martz committed
576 577
            else:
                search_opts = {
578
                    'name': '^%s$' % name,
Matt Martz committed
579 580 581 582 583 584 585 586 587 588 589 590
                    'image': image,
                    'flavor': flavor
                }
                servers = []
                for server in cs.servers.list(search_opts=search_opts):
                    if server.metadata != meta:
                        continue
                    servers.append(server)

                if len(servers) >= count:
                    instances = []
                    for server in servers:
591
                        instances.append(server_to_dict(server))
Matt Martz committed
592 593 594 595 596 597 598 599 600 601 602 603

                    instance_ids = [i['id'] for i in instances]
                    module.exit_json(changed=False, action=None,
                                     instances=instances, success=[], error=[],
                                     timeout=[],
                                     instance_ids={'instances': instance_ids,
                                                   'success': [], 'error': [],
                                                   'timeout': []})

                names = [name] * (count - len(servers))

        create(module, names, flavor, image, meta, key_name, files,
604 605
               wait, wait_timeout, disk_config, group, nics, extra_create_args,
               existing=servers)
Matt Martz committed
606 607 608 609 610 611 612 613 614

    elif state == 'absent':
        if instance_ids is None:
            for arg, value in dict(name=name, flavor=flavor,
                                   image=image).iteritems():
                if not value:
                    module.fail_json(msg='%s is required for the "rax" '
                                         'module' % arg)
            search_opts = {
615
                'name': '^%s$' % name,
Matt Martz committed
616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
                'image': image,
                'flavor': flavor
            }
            for server in cs.servers.list(search_opts=search_opts):
                if meta != server.metadata:
                    continue
                servers.append(server)

            instance_ids = []
            for server in servers:
                if len(instance_ids) < count:
                    instance_ids.append(server.id)
                else:
                    break

        if not instance_ids:
            module.exit_json(changed=False, action=None, instances=[],
                             success=[], error=[], timeout=[],
                             instance_ids={'instances': [],
                                           'success': [], 'error': [],
                                           'timeout': []})

        delete(module, instance_ids, wait, wait_timeout)

640 641

def main():
642 643 644
    argument_spec = rax_argument_spec()
    argument_spec.update(
        dict(
645
            auto_increment=dict(default=True, type='bool'),
Matt Martz committed
646 647
            count=dict(default=1, type='int'),
            count_offset=dict(default=1, type='int'),
648
            disk_config=dict(choices=['auto', 'manual']),
649
            exact_count=dict(default=False, type='bool'),
650 651
            extra_client_args=dict(type='dict', default={}),
            extra_create_args=dict(type='dict', default={}),
Matt Martz committed
652 653 654 655 656 657 658 659 660 661 662
            files=dict(type='dict', default={}),
            flavor=dict(),
            group=dict(),
            image=dict(),
            instance_ids=dict(type='list'),
            key_name=dict(aliases=['keypair']),
            meta=dict(type='dict', default={}),
            name=dict(),
            networks=dict(type='list', default=['public', 'private']),
            service=dict(),
            state=dict(default='present', choices=['present', 'absent']),
663
            wait=dict(default=False, type='bool'),
Matt Martz committed
664
            wait_timeout=dict(default=300),
665 666 667 668 669 670
        )
    )

    module = AnsibleModule(
        argument_spec=argument_spec,
        required_together=rax_required_together(),
671 672
    )

Matt Martz committed
673 674 675
    if not HAS_PYRAX:
        module.fail_json(msg='pyrax is required for this module')

676
    service = module.params.get('service')
Matt Martz committed
677 678 679 680 681 682

    if service is not None:
        module.fail_json(msg='The "service" attribute has been deprecated, '
                             'please remove "service: cloudservers" from your '
                             'playbook pertaining to the "rax" module')

683
    auto_increment = module.params.get('auto_increment')
Matt Martz committed
684 685
    count = module.params.get('count')
    count_offset = module.params.get('count_offset')
686 687 688
    disk_config = module.params.get('disk_config')
    if disk_config:
        disk_config = disk_config.upper()
Matt Martz committed
689
    exact_count = module.params.get('exact_count', False)
690 691
    extra_client_args = module.params.get('extra_client_args')
    extra_create_args = module.params.get('extra_create_args')
Matt Martz committed
692
    files = module.params.get('files')
693
    flavor = module.params.get('flavor')
Matt Martz committed
694
    group = module.params.get('group')
695
    image = module.params.get('image')
Matt Martz committed
696
    instance_ids = module.params.get('instance_ids')
697
    key_name = module.params.get('key_name')
Matt Martz committed
698 699 700 701
    meta = module.params.get('meta')
    name = module.params.get('name')
    networks = module.params.get('networks')
    state = module.params.get('state')
702 703 704
    wait = module.params.get('wait')
    wait_timeout = int(module.params.get('wait_timeout'))

705
    setup_rax_module(module, pyrax)
706

707 708 709 710 711 712 713 714
    if extra_client_args:
        pyrax.cloudservers = pyrax.connect_to_cloudservers(
            region=pyrax.cloudservers.client.region_name,
            **extra_client_args)
        client = pyrax.cloudservers.client
        if 'bypass_url' in extra_client_args:
            client.management_url = extra_client_args['bypass_url']

Matt Martz committed
715 716 717 718 719
    if pyrax.cloudservers is None:
        module.fail_json(msg='Failed to instantiate client. This '
                             'typically indicates an invalid region or an '
                             'incorrectly capitalized region name.')

Matt Martz committed
720 721
    cloudservers(module, state, name, flavor, image, meta, key_name, files,
                 wait, wait_timeout, disk_config, count, group,
722
                 instance_ids, exact_count, networks, count_offset,
723
                 auto_increment, extra_create_args)
724 725


726
# import module snippets
Matt Martz committed
727
from ansible.module_utils.basic import *
728
from ansible.module_utils.rax import *
729

Matt Martz committed
730
### invoke the module
731
main()