-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconf.toml.example
56 lines (42 loc) · 902 Bytes
/
conf.toml.example
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
# you probably want to change this
secret_key = "changeme"
[net_bridges]
Ext-Net = "lxdbr0"
[users]
# you probably also want to change this
foouser = {"password" = "changeme"}
[roles]
users = [ "foouser" ]
[flavors.1]
vcpus = 1
ram = 1000
swap = 0
disk = 10000
[flavors.3]
vcpus = 1
ram = 4000
swap = 0
disk = 10000
[flavors.s1-4]
vcpus = 1
ram = 1024
swap = 0
disk = 10000
[acls."/*"]
# Make everything conveniently insecure
ANONYMOUS = [ "get", "put", "post", "delete" ]
[acls."/identity/"]
# Endpoint index
ANONYMOUS = [ "get" ]
[acls."/identity/v3/auth/tokens"]
ANONYMOUS = [ "get", "post" ]
[acls."/objects*"]
users = [ "put", "get", "head", "delete" ]
[acls."/images*"]
users = [ "put", "post", "get", "delete" ]
[acls."/compute*"]
users = [ "put", "post", "get", "delete" ]
[acls."/storage*"]
users = [ "put", "post", "get", "delete" ]
[acls."/network*"]
users = [ "get", "post" ]