Module - tripleo_overcloud_network_vip_populate_environment¶
This module provides for the following ansible plugin:
tripleo_overcloud_network_vip_populate_environment
Module Documentation¶
Extract information about provisioned network Virtual IP resources in overcloud heat stack.
Options¶
- stack_name
 Name of the overcloud heat stack
- vip_data
 Dictionary of network Virtual IP definitions
- templates
 The path to tripleo-heat-templates root directory
Authors¶
Harald Jensås <hjensas@redhat.com>
Example Tasks¶
- name: Get Overcloud Virtual IPs data
  tripleo_overcloud_network_vip_populate_environment:
    stack_name: overcloud
  register: overcloud_vip_env
- name: Write Virtual IPs environment to output file
  copy:
    content: '{{ overcloud_vip_env.vip_env | to_yaml }}'
    dest: /path/overcloud_vip_env.yaml