~landscape/charms/trusty/keystone-apt/trunk

« back to all changes in this revision

Viewing changes to templates/icehouse/keystone.conf

  • Committer: James Page
  • Date: 2014-04-16 08:20:08 UTC
  • mfrom: (52.2.30 keystone)
  • Revision ID: james.page@canonical.com-20140416082008-34w0nyak0y571tfp
[james-page,ivoks,hazmat,yolanda.robla,r=james-page,t=*]

Redux to used charm helpers
Support for Icehouse on 12.04 and 14.04
Support for Active/Active and SSL RabbitMQ
Support for SSL MySQL
Support for SSL endpoints
Support for PostgreSQL

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# icehouse
 
2
###############################################################################
 
3
# [ WARNING ]
 
4
# Configuration file maintained by Juju. Local changes may be overwritten.
 
5
###############################################################################
 
6
[DEFAULT]
 
7
admin_token = {{ token }}
 
8
admin_port = {{ admin_port }}
 
9
public_port = {{ public_port }}
 
10
use_syslog = {{ use_syslog }}
 
11
log_config = /etc/keystone/logging.conf
 
12
debug = {{ debug }}
 
13
verbose = {{ verbose }}
 
14
 
 
15
[database]
 
16
{% if database_host -%}
 
17
connection = {{ database_type }}://{{ database_user }}:{{ database_password }}@{{ database_host }}/{{ database }}{% if database_ssl_ca %}?ssl_ca={{ database_ssl_ca }}{% if database_ssl_cert %}&ssl_cert={{ database_ssl_cert }}&ssl_key={{ database_ssl_key }}{% endif %}{% endif %}
 
18
{% else -%}
 
19
connection = sqlite:////var/lib/keystone/keystone.db
 
20
{% endif -%}
 
21
idle_timeout = 200
 
22
 
 
23
[identity]
 
24
driver = keystone.identity.backends.sql.Identity
 
25
 
 
26
[credential]
 
27
driver = keystone.credential.backends.sql.Credential
 
28
 
 
29
[trust]
 
30
driver = keystone.trust.backends.sql.Trust
 
31
 
 
32
[os_inherit]
 
33
 
 
34
[catalog]
 
35
driver = keystone.catalog.backends.sql.Catalog
 
36
 
 
37
[endpoint_filter]
 
38
 
 
39
[token]
 
40
driver = keystone.token.backends.sql.Token
 
41
 
 
42
[cache]
 
43
 
 
44
[policy]
 
45
driver = keystone.policy.backends.sql.Policy
 
46
 
 
47
[ec2]
 
48
driver = keystone.contrib.ec2.backends.sql.Ec2
 
49
 
 
50
[assignment]
 
51
 
 
52
[oauth1]
 
53
 
 
54
[signing]
 
55
 
 
56
[auth]
 
57
methods = external,password,token,oauth1
 
58
password = keystone.auth.plugins.password.Password
 
59
token = keystone.auth.plugins.token.Token
 
60
oauth1 = keystone.auth.plugins.oauth1.OAuth
 
61
 
 
62
[paste_deploy]
 
63
config_file = keystone-paste.ini
 
64
 
 
65
[extra_headers]
 
66
Distribution = Ubuntu