Skip to content
Snippets Groups Projects
Commit b6936383 authored by Nenad Radojevic's avatar Nenad Radojevic
Browse files

Configurable policy.json for keystone

Copy custom policy.json into keystone container

Change-Id: I58787c3dd7adbeff47d0898c23db95f5919510d3
Closes-Bug: #1604431
parent 85300a4f
No related branches found
No related tags found
No related merge requests found
--- ---
- name: Check if Policies shall be overwritten
local_action: stat path="{{ node_custom_config }}/keystone/policy.json"
register: keystone_policy
- name: Check if Keystone Domain specific settings enabled - name: Check if Keystone Domain specific settings enabled
local_action: stat path="{{ node_custom_config }}/keystone/domains" local_action: stat path="{{ node_custom_config }}/keystone/domains"
register: keystone_domain_cfg register: keystone_domain_cfg
...@@ -49,6 +53,13 @@ ...@@ -49,6 +53,13 @@
with_fileglob: with_fileglob:
- "{{ node_custom_config }}/keystone/domains/*" - "{{ node_custom_config }}/keystone/domains/*"
- name: Copying over existing policy.json
template:
src: "{{ node_custom_config }}/keystone/policy.json"
dest: "{{ node_config_directory }}/keystone/policy.json"
when:
keystone_policy.stat.exists
- name: Copying over wsgi-keystone.conf - name: Copying over wsgi-keystone.conf
template: template:
src: "wsgi-keystone.conf.j2" src: "wsgi-keystone.conf.j2"
......
...@@ -16,6 +16,13 @@ ...@@ -16,6 +16,13 @@
"perm": "0600", "perm": "0600",
"optional": true "optional": true
}, },
{
"source": "{{ container_config_directory }}/policy.json",
"dest": "/etc/keystone/policy.json",
"owner": "keystone",
"perm": "0600",
"optional": true
},
{ {
"source": "{{ container_config_directory }}/wsgi-keystone.conf", "source": "{{ container_config_directory }}/wsgi-keystone.conf",
"dest": "/etc/{{ keystone_dir }}/wsgi-keystone.conf", "dest": "/etc/{{ keystone_dir }}/wsgi-keystone.conf",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment