blob: a5930ed92edd3f56f20e344fef26b69b27816746 [file] [log] [blame]
Zack Williams70996442020-10-01 22:09:49 -07001---
2# timesheets defaults/main.yml
3#
4# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
5# SPDX-License-Identifier: Apache-2.0
6
7# unix username/groupname
8timesheets_username: "timesheets"
9timesheets_groupname: "timesheets"
10timesheets_comment: "Timesheets NodeJS application"
11
12# git repos
13timesheetsdb_repo: "https://github.com/opennetworkinglab/timesheetsdb"
14timesheetsdb_version: "master"
15
16timesheetsui_repo: "https://github.com/opennetworkinglab/timesheetsui"
17timesheetsui_version: "master"
18
19# directories
20timesheets_dir: "/opt/timesheets"
21
22# postgres db settings
23timesheets_pg_db: "timesheets"
Zack Williams952bc002020-10-04 09:45:59 -070024timesheets_pg_db_port: 5432
Zack Williams70996442020-10-01 22:09:49 -070025timesheets_pg_db_username: "timesheets_db_user"
26timesheets_pg_db_password: "timesheets_db_pass"
Zack Williamse14f7702020-10-22 19:57:55 -070027
28timesheets_env_vars:
29 NAME: "Timesheets"
30 AUTHENTICATION_SECRET: "secret"
31 DATABASE_NAME: "{{ timesheets_pg_db }}"
32 DATABASE_PORT: "{{ timesheets_pg_db_port }}"
33 DATABASE_USER: "{{ timesheets_pg_db_username }}"
34 DATABASE_PASS: "{{ timesheets_pg_db_password }}"
35 DOCUSIGN_BASE_PATH: "https://docusign.net/restapi"
36 DOCUSIGN_TOKEN_URL: "https://account.docusign.com/oauth/token"
37 DOCUSIGN_ACCOUNT_ID: "uuid"
38 DOCUSIGN_ISS: "uuid"
39 DOCUSIGN_SUB: "uuid"
40 DOCUSIGN_AUD: "account.docusign.com"
41 DOCUSIGN_SCOPE: "signature impersonation"
42 GOOGLE_CLIENT_ID: "id"
43 GOOGLE_CLIENT_SECRET: "secret"
44 GOOGLE_PROJECT_ID: "example-timesheets-project"
45 GOOGLE_AUTH_URI: "https://accounts.google.com/o/oauth2/auth"
46 GOOGLE_TOKEN_URI: "https://oauth2.googleapis.com/token"
47 GOOGLE_AUTH_PROVIDER_X509_CERT_URL: "https://www.googleapis.com/oauth2/v1/certs"
48 GOOGLE_REDIRECT_URIS: "urn:ietf:wg:oauth:2.0:oob, http://localhost"
49 GOOGLE_DOC_PARENT_FOLDER: "folder"
50 GOOGLE_DOC_URL_TEMPLATE: "https://drive.google.com/file/d/id/view"