Initial commit
[ta/infra-ansible.git] / roles / yarf / defaults / main.yml
1 # Copyright 2019 Nokia
2
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 ## Service Type and Data
16 restful_service_region: RegionOne
17 restful_service_name: restfulframework
18 restful_service_port: 61200
19 restful_service_proto: http
20 restful_service_type: restfulapi
21 restful_debug_mode: false
22 restful_service_description: "Restful API"
23 restful_service_publicuri_proto: "{{ openstack_service_publicuri_proto | default(restful_service_proto) }}"
24 restful_service_internaluri_proto: "{{ openstack_service_internaluri_proto | default(restful_service_proto) }}"
25 restful_service_publicuri: "{{ restful_service_publicuri_proto }}://{{ external_lb_vip_address | ipwrap }}:{{ restful_service_port }}"
26 restful_service_publicurl: "{{ restful_service_publicuri }}"
27 restful_service_internaluri: "{{ restful_service_internaluri_proto }}://{{ internal_lb_vip_address }}:{{ restful_service_port }}"
28 restful_service_internalurl: "{{ restful_service_internaluri }}"
29
30 restful_service_user_name: restful
31 restful_service_project_name: service
32 restful_service_project_domain_id: default
33 restful_service_user_domain_id: default
34 restful_role_name: admin
35 restful_service_password: "foobar"
36 restful_authentication_method: yarf.authentication.keystone.KeystoneAuth
37