community.general/lib/ansible/modules/cloud/openstack
Jesse Pretorius 1579178f2d os_project_access: clean up some things (#40464)
* os_project_access: correct example tasks

The example task does not work. Fix it so that it does.

* os_project_access: Remove unused function

The _get_allowed_projects function is not used anywhere,
so we can remove it and be free of nova_client for this
module.
2018-05-25 10:43:46 -07:00
..
README.md
__init__.py
_os_server_actions.py Rename modules from plural to singular (#27185) 2017-08-14 16:35:15 -04:00
os_auth.py Add a module_utils OpenStack Cloud constructor (#20974) 2018-02-15 15:20:49 +01:00
os_client_config.py Add boilerplate and remove wildcard imports for openstack modules (#31461) 2017-10-09 09:56:26 -07:00
os_flavor_facts.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_floating_ip.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_group.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_image.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_image_facts.py Add a module_utils OpenStack Cloud constructor (#20974) 2018-02-15 15:20:49 +01:00
os_ironic.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_ironic_inspect.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_ironic_node.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_keypair.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_keystone_domain.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_keystone_domain_facts.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_keystone_endpoint.py Add a module_utils OpenStack Cloud constructor (#20974) 2018-02-15 15:20:49 +01:00
os_keystone_role.py Add a module_utils OpenStack Cloud constructor (#20974) 2018-02-15 15:20:49 +01:00
os_keystone_service.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_network.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_networks_facts.py Add a module_utils OpenStack Cloud constructor (#20974) 2018-02-15 15:20:49 +01:00
os_nova_flavor.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_nova_host_aggregate.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_object.py Add a module_utils OpenStack Cloud constructor (#20974) 2018-02-15 15:20:49 +01:00
os_port.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_port_facts.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_project.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_project_access.py os_project_access: clean up some things (#40464) 2018-05-25 10:43:46 -07:00
os_project_facts.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_quota.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_recordset.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_router.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_security_group.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_security_group_rule.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_server.py os_server: Remove nova_client usage (#40462) 2018-05-25 10:43:12 -07:00
os_server_action.py Update Jesse Keating's github id (#39904) 2018-05-11 07:38:15 +02:00
os_server_facts.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_server_group.py Add a module_utils OpenStack Cloud constructor (#20974) 2018-02-15 15:20:49 +01:00
os_server_metadata.py Add new OpenStack module for changing metadata of compute instances (#19113) 2018-05-17 17:24:28 -04:00
os_server_volume.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_stack.py Fixes 30786 - add server response to the failure (#39371) 2018-04-30 14:18:06 -04:00
os_subnet.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_subnets_facts.py Add a module_utils OpenStack Cloud constructor (#20974) 2018-02-15 15:20:49 +01:00
os_user.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_user_facts.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_user_group.py Add a module_utils OpenStack Cloud constructor (#20974) 2018-02-15 15:20:49 +01:00
os_user_role.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_volume.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
os_volume_snapshot.py fix sanity checks to make shippable happy (#39685) 2018-05-03 10:36:08 -05:00
os_zone.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00

README.md

OpenStack Ansible Modules

These are a set of modules for interacting with OpenStack as either an admin or an end user. If the module does not begin with os_, it's either deprecated or soon to be. This document serves as developer coding guidelines for modules intended to be here.

Naming

  • All modules should start with os_
  • If the module is one that a cloud consumer would expect to use, it should be named after the logical resource it manages. Thus, os_server not os_nova. The reasoning for this is that there are more than one resource that are managed by more than one service and which one manages it is a deployment detail. A good example of this are floating IPs, which can come from either Nova or Neutron, but which one they come from is immaterial to an end user.
  • If the module is one that a cloud admin would expect to use, it should be be named with the service and the resource, such as os_keystone_domain.
  • If the module is one that a cloud admin and a cloud consumer could both use, the cloud consumer rules apply.

Interface

  • If the resource being managed has an id, it should be returned.
  • If the resource being managed has an associated object more complex than an id, it should also be returned.

Interoperability

  • It should be assumed that the cloud consumer does not know a bazillion details about the deployment choices their cloud provider made, and a best effort should be made to present one sane interface to the ansible user regardless of deployer insanity.
  • All modules should work appropriately against all existing known public OpenStack clouds.
  • It should be assumed that a user may have more than one cloud account that they wish to combine as part of a single ansible managed infrastructure.

Libraries

  • All modules should use openstack_full_argument_spec to pick up the standard input such as auth and ssl support.
  • All modules should extends_documentation_fragment: openstack to go along with openstack_full_argument_spec.
  • All complex cloud interaction or interoperability code should be housed in the shade library.
  • All OpenStack API interactions should happen via shade and not via OpenStack Client libraries. The OpenStack Client libraries do no have end users as a primary audience, they are for intra-server communication. The python-openstacksdk is the future there, and shade will migrate to it when its ready in a manner that is not noticeable to ansible users.

Testing