Zack Williams | 7099644 | 2020-10-01 22:09:49 -0700 | [diff] [blame] | 1 | --- |
| 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 |
| 8 | timesheets_username: "timesheets" |
| 9 | timesheets_groupname: "timesheets" |
| 10 | timesheets_comment: "Timesheets NodeJS application" |
| 11 | |
| 12 | # git repos |
| 13 | timesheetsdb_repo: "https://github.com/opennetworkinglab/timesheetsdb" |
| 14 | timesheetsdb_version: "master" |
| 15 | |
| 16 | timesheetsui_repo: "https://github.com/opennetworkinglab/timesheetsui" |
| 17 | timesheetsui_version: "master" |
| 18 | |
| 19 | # directories |
| 20 | timesheets_dir: "/opt/timesheets" |
| 21 | |
| 22 | # postgres db settings |
| 23 | timesheets_pg_db: "timesheets" |
Zack Williams | 952bc00 | 2020-10-04 09:45:59 -0700 | [diff] [blame] | 24 | timesheets_pg_db_port: 5432 |
Zack Williams | 7099644 | 2020-10-01 22:09:49 -0700 | [diff] [blame] | 25 | timesheets_pg_db_username: "timesheets_db_user" |
| 26 | timesheets_pg_db_password: "timesheets_db_pass" |
Zack Williams | e14f770 | 2020-10-22 19:57:55 -0700 | [diff] [blame] | 27 | |
| 28 | timesheets_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" |