aboutsummaryrefslogtreecommitdiff
path: root/test/leap_platform/provider_base/provider.json
blob: cf1baac6b913d11fff76e680c969fd54cbf60c53 (plain)
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
{
  "domain": "REQUIRED",
  "domain_internal": "= domain.sub(/\\..*$/,'.i')",
  "name": {
    "en": "REQUIRED"
  },
  "description": {
    "en": "REQUIRED"
  },
  "contacts": {
    "default": "REQUIRED"
  },
  "languages": ["en"],
  "default_language": "en",
  "enrollment_policy": "open",
  "service": {
    "levels": [
      // bandwidth limit is in Bytes, storage limit is in MB.
      {"id": 1, "name": "free", "bandwidth":"limited", "storage":50},
      {"id": 2, "name": "basic", "storage":1000, "rate": ["US$10", "€10"]},
      {"id": 3, "name": "pro", "storage":10000, "rate": ["US$20", "€20"]}
    ],
    "default_service_level": 1,
    "bandwidth_limit": 102400,
    "allow_free": "= global.provider.service.levels.select {|l| l['rate'].nil?}.any?",
    "allow_paid": "= global.provider.service.levels.select {|l| !l['rate'].nil?}.any?",
    "allow_anonymous": "= global.provider.service.levels.select {|l| l['name'] == 'anonymous'}.any?",
    "allow_registration": "= global.provider.service.levels.select {|l| l['name'] != 'anonymous'}.any?",
    "allow_limited_bandwidth": "= global.provider.service.levels.select {|l| l['bandwidth'] == 'limited'}.any?",
    "allow_unlimited_bandwidth": "= global.provider.service.levels.select {|l| l['bandwidth'].nil?}.any?"
  },
  "ca": {
    "name": "= global.provider.ca.organization + ' Root CA'",
    "organization": "= global.provider.name[global.provider.default_language]",
    "organizational_unit": "= 'https://' + global.provider.domain",
    "bit_size": 4096,
    "digest": "SHA256",
    "life_span": "10y",
    "server_certificates": {
      "bit_size": 2024,
      "digest": "SHA256",
      "life_span": "1y"
    },
    "client_certificates": {
      "bit_size": 2024,
      "digest": "SHA256",
      "life_span": "2m",
      "limited_prefix": "LIMITED",
      "unlimited_prefix": "UNLIMITED"
    }
  },
  "hiera_sync_destination": "/etc/leap"
}