summaryrefslogtreecommitdiff
path: root/test/config/sample.config
blob: 1c0db37ba177232175e99426fed0fdcd64048a4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%% -*- erlang -*-
{ok, CurDir} = file:get_cwd().
[
 {include_lib, "rvi_core/rvi_sample.config"},
 {set_env,
  [
   {rvi_core,
    [{key_pair, {openssl_pem, filename:join(
				CurDir, "basic_sample_keys/dev_priv.pem")}},
     {provisioning_key,
      {openssl_pem, filename:join(CurDir, "root_keys/root_pub.pem")}},
     {authorize_jwt, filename:join(
		       CurDir, "basic_sample_keys/dev_pub_sign.jwt")}
    ]}
  ]}
].