File: main.yml

package info (click to toggle)
python-openstacksdk 4.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 14,048 kB
  • sloc: python: 129,267; sh: 153; makefile: 23
file content (12 lines) | stat: -rw-r--r-- 252 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
---
- name: Create keystone role
  os_keystone_role:
     cloud: "{{ cloud }}"
     state: present
     name: "{{ role_name }}"

- name: Delete keystone role
  os_keystone_role:
     cloud: "{{ cloud }}"
     state: absent
     name: "{{ role_name }}"