blob: 0ea2a98e9ef562edb820aea77a9ea4f4d3dfa2c6 [file] [log] [blame]
Jakub Pavlik874d9d32016-01-25 22:19:15 +01001keystone:
Petr Michalece9a6c2a2017-03-05 20:14:34 +01002# Server state
Jakub Pavlik874d9d32016-01-25 22:19:15 +01003 server:
4 enabled: true
5 version: liberty
Petr Michalece9a6c2a2017-03-05 20:14:34 +01006 service_token: RANDOMSTRINGTOKEN
Jakub Pavlik874d9d32016-01-25 22:19:15 +01007 service_tenant: service
8 admin_tenant: admin
9 admin_name: admin
Petr Michalece9a6c2a2017-03-05 20:14:34 +010010 admin_password: passw0rd
Jakub Pavlik874d9d32016-01-25 22:19:15 +010011 admin_email: root@localhost
12 bind:
13 address: 0.0.0.0
14 private_address: 127.0.0.1
15 private_port: 35357
16 public_address: 127.0.0.1
17 public_port: 5000
18 region: RegionOne
19 database:
20 engine: mysql
Petr Michalece9a6c2a2017-03-05 20:14:34 +010021 host: localhost
22 name: keystone
23 password: passw0rd
24 user: keystone
Jakub Pavlik874d9d32016-01-25 22:19:15 +010025 tokens:
26 engine: cache
27 expiration: 86400
28 location: /etc/keystone/fernet-keys/
Petr Michalece9a6c2a2017-03-05 20:14:34 +010029 notification: false
30 notification_format: cadf
Oleksandr Shyshko70341eb2019-02-21 12:51:25 +000031 security_compliance:
32 disable_user_account_days_inactive: 90
33 lockout_failure_attempts: 5
34 lockout_duration: 600
35 password_expires_days: 90
36 unique_last_password_count: 10
37 minimum_password_age: 0
38 password_regex: '^(?=.*\d)(?=.*[a-zA-Z]).{7,}$$'
39 password_regex_description: 'Your password must contains at least 1 letter, 1 digit, and have a minimum length of 7 characters'
40 change_password_upon_first_use: True
vgusev779727c2018-02-16 18:10:54 +040041 logging:
42 log_appender: false
43 log_handlers:
44 watchedfile:
45 enabled: true
46 fluentd:
47 enabled: false
48 ossyslog:
49 enabled: false
Dmitry Ukov70256222017-11-20 19:26:38 +040050 extra_config:
51 federation:
52 cache_group_membership_in_db: true
Petr Michalece9a6c2a2017-03-05 20:14:34 +010053 #message_queue:
54 #engine: rabbitmq
55 #host: 127.0.0.1
56 #port: 5672
57 #user: openstack
58 #password: password
59 #virtual_host: '/openstack'
60 #ha_queues: true
61# Client state
62 client:
63 enabled: false
64 server:
65 identity:
66 admin:
67 host: localhost
68 port: 35357
69 token: RANDOMSTRINGTOKEN
70 roles:
71 - admin
72 - Member
73 project:
74 service:
75 description: "OpenStack Service tenant"
76 admin:
77 description: "OpenStack Admin tenant"
78 user:
79 admin:
80 is_admin: true
81 password: passw0rd
82 email: admin@localhost
83 service:
84 keystone3:
85 type: identity
86 description: OpenStack Identity Service v3
87 endpoints:
88 - region: RegionOne
89 public_address: keystone
90 public_protocol: http
91 public_port: 5000
92 public_path: '/v3'
93 internal_address: keystone
94 internal_port: 5000
95 internal_path: '/v3'
96 admin_address: keystone
97 admin_port: 35357
98 admin_path: '/v3'
99 keystone:
100 type: identity
101 description: OpenStack Identity Service
102 endpoints:
103 - region: RegionOne
104 public_address: keystone
105 public_protocol: http
106 public_port: 5000
107 public_path: '/v2.0'
108 internal_address: keystone
109 internal_port: 5000
110 internal_path: '/v2.0'
111 admin_address: keystone
112 admin_port: 35357
113 admin_path: '/v2.0'
114 # TODO: enable once salt keystone module/states are fixed
115 #keystoneR2:
116 #service: keystone
117 #type: identity
118 #description: OpenStack Identity Service
119 #endpoints:
120 #- region: RegionTwo
121 #public_address: keystone
122 #public_protocol: http
123 #public_port: 5000
124 #public_path: '/v2.0'
125 #internal_address: keystone
126 #internal_port: 5000
127 #internal_path: '/v2.0'
128 #admin_address: keystone
129 #admin_port: 35357
130 #admin_path: '/v2.0'
131# CI related dependencies
132mysql:
133 client:
134 enabled: true
135 version: '5.7'
136 admin:
137 host: localhost
138 port: 3306
139 user: admin
140 password: password
141 encoding: utf8
142 server:
143 enabled: true
144 version: "5.7"
145 force_encoding: utf8
146 bind:
147 address: 0.0.0.0
148 port: 3306
149 protocol: tcp
150 database:
151 keystone:
152 encoding: utf8
153 users:
154 - host: '%'
155 name: keystone
156 password: passw0rd
157 rights: all
158 - host: 127.0.0.1
159 name: keystone
160 password: passw0rd
161 rights: all