Skip to content

Latest commit

 

History

History
544 lines (278 loc) · 10.1 KB

cloud_info_module.rst

File metadata and controls

544 lines (278 loc) · 10.1 KB
orphan:

morpheus.core.cloud_info module -- Retrieves Cloud Info

Note

This module is part of the morpheus.core collection (version 0.7.1).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install morpheus.core.

To use it in a playbook, specify: morpheus.core.cloud_info.

.. rst-class:: ansible-version-added

New in morpheus.core 0.7.0

  • Retrieves information about Morpheus Clouds.
.. tabularcolumns:: \X{1}{3}\X{2}{3}

Parameter Comments
.. rst-class:: ansible-option-title

detail

.. ansible-option-type-line::

  :ansible-option-type:`string`

.. rst-class:: ansible-option-title

id

.. ansible-option-type-line::

  :ansible-option-type:`integer`

Return specific object by id.

.. rst-class:: ansible-option-title

name

.. ansible-option-type-line::

  :ansible-option-type:`string`

Filter by name.

.. rst-class:: ansible-option-title

regex_name

.. ansible-option-type-line::

  :ansible-option-type:`boolean`

.. rst-class:: ansible-option-title

type

.. ansible-option-type-line::

  :ansible-option-type:`string`

Filter Clouds by Cloud Type Code.

.. tabularcolumns:: \X{2}{10}\X{3}{10}\X{5}{10}

Attribute Support Description
.. rst-class:: ansible-option-title

check_mode

Can run in check_mode and return changed status prediction without modifying target

.. rst-class:: ansible-option-title

diff_mode

Will return details on what has changed (or possibly needs changing in check_mode), when in diff mode

.. rst-class:: ansible-option-title

platform

Target OS/families that can be operated against

- name: Return all Clouds
  morpheus.core.cloud_info:

- name: Return all VMware Clouds
  morpheus.core.cloud_info:
    type: vmware

- name: Return Cloud matching Name
  morpheus.core.cloud_info:
    name: ProdCloud

- name: Return all Clouds matching Regex Name
  morpheus.core.cloud_info:
    name: ^Dev.*$
    regex_name: true

- name: Return Clouds with Full Detailed Info
  morpheus.core.cloud_info:
    detail: full

Common return values are documented :ref:`here <common_return_values>`, the following are the fields unique to this module:

.. tabularcolumns:: \X{1}{3}\X{2}{3}

Key Description
.. rst-class:: ansible-option-title

clouds

.. ansible-option-type-line::

  :ansible-option-type:`list` / :ansible-option-elements:`elements=string`

Authors

  • James Riach (@McGlovin1337)

Collection links

.. ansible-links::

  - title: "Repository (Sources)"
    url: "https://www.github.com/gomorpheus/ansible-collection-morpheus-core"
    external: true