forked from cloudfoundry/bosh-deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uaa.yml
152 lines (152 loc) · 4.54 KB
/
uaa.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
- path: /releases/-
release: uaa
type: replace
value:
name: uaa
sha1: 0b36bf7f68eacd74bb36b12f7fb3a6cc5cf1fb73
url: https://s3.amazonaws.com/bosh-compiled-release-tarballs/uaa-64.0-ubuntu-xenial-250.17-20190311-184458-282394907-20190311184524.tgz
version: "64.0"
- path: /instance_groups/name=bosh/properties/director/user_management/provider
type: replace
value: uaa
- path: /instance_groups/name=bosh/properties/director/user_management/local
type: remove
- path: /instance_groups/name=bosh/properties/director/user_management/uaa?/url
type: replace
value: https://((internal_ip)):8443
- path: /instance_groups/name=bosh/properties/director/user_management/uaa/public_key?
type: replace
value: ((uaa_jwt_signing_key.public_key))
- path: /instance_groups/name=bosh/jobs/-
type: replace
value:
name: uaa
properties:
encryption:
active_key_label: uaa-encryption-key-1
encryption_keys:
- label: uaa-encryption-key-1
passphrase: ((uaa_encryption_key_1))
login:
saml:
activeKeyId: uaa-saml-key-1
keys:
uaa-saml-key-1:
certificate: ((uaa_service_provider_ssl.certificate))
key: ((uaa_service_provider_ssl.private_key))
passphrase: ""
uaa:
clients:
admin:
authorities: bosh.admin
authorized-grant-types: client_credentials
override: true
scope: ""
secret: ((admin_password))
bosh_cli:
access-token-validity: 120
authorities: uaa.none
authorized-grant-types: password,refresh_token
override: true
refresh-token-validity: 86400
scope: openid,bosh.admin,bosh.read,bosh.*.admin,bosh.*.read,bosh.teams.*.admin,bosh.teams.*.read
secret: ""
hm:
authorities: bosh.admin
authorized-grant-types: client_credentials
override: true
scope: ""
secret: ((hm_password))
uaa_admin:
authorities: clients.read,clients.write,clients.secret,uaa.admin,scim.read,scim.write,password.write
authorized-grant-types: client_credentials
override: true
scope: ""
secret: ((uaa_admin_client_secret))
jwt:
policy:
active_key_id: uaa-jwt-key-1
keys:
uaa-jwt-key-1:
signingKey: ((uaa_jwt_signing_key.private_key))
login:
client_secret: ((uaa_login_client_secret))
port: -1
scim:
groups:
bosh.admin: User has admin access on any Director
bosh.read: User has read access on any Director
bosh.releases.upload: User can upload new releases
bosh.stemcells.upload: User can upload new stemcells
users:
- groups:
- bosh.admin
name: admin
password: ((admin_password))
sslCertificate: ((uaa_ssl.certificate))
sslPrivateKey: ((uaa_ssl.private_key))
url: https://((internal_ip)):8443
zones:
internal:
hostnames: []
uaadb:
address: 127.0.0.1
databases:
- name: uaa
tag: uaa
db_scheme: postgresql
port: 5432
roles:
- name: postgres
password: ((postgres_password))
tag: admin
release: uaa
- path: /instance_groups/name=bosh/properties/postgres/additional_databases?/-
type: replace
value: uaa
- path: /instance_groups/name=bosh/properties/hm/director_account/client_id?
type: replace
value: hm
- path: /instance_groups/name=bosh/properties/hm/director_account/client_secret?
type: replace
value: ((hm_password))
- path: /variables/-
type: replace
value:
name: uaa_jwt_signing_key
type: rsa
- path: /variables/-
type: replace
value:
name: uaa_admin_client_secret
type: password
- path: /variables/-
type: replace
value:
name: uaa_login_client_secret
type: password
- path: /variables/-
type: replace
value:
name: uaa_encryption_key_1
type: password
- path: /variables/-
type: replace
value:
name: uaa_ssl
options:
alternative_names:
- ((internal_ip))
ca: default_ca
common_name: ((internal_ip))
type: certificate
- path: /variables/-
type: replace
value:
name: uaa_service_provider_ssl
options:
alternative_names:
- ((internal_ip))
ca: default_ca
common_name: ((internal_ip))
type: certificate