-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathlocal_secrets_example.yml
64 lines (53 loc) · 2.54 KB
/
local_secrets_example.yml
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
57
58
59
60
61
62
63
64
###############################################################
### Sample Local Secrets Data Broker Configuration. ###
### This file stores sensitive information, not ###
### intended to live with the codebase. Values here ###
### will override values in config.yml and local_config.yml ###
### ###
### Note: for non-local environments, this file will not be ###
### used but rather pulled directly from AWS via the ###
### Systems Manager - Parameter Store ###
###############################################################
broker:
# Set valid email address and password to be used as the Data
# Broker's admin account. This is what you will use to log into
# the broker website. The password should contain a combination
# of letters, numbers, and special characters.
admin_email: [email protected]
admin_password: password
# Sets the security token for the API Proxy Login endpoint
api_proxy_token: password
## AWS Configuration Settings ##
# If set to true the application will use AWS for the storage of files
# submitted to the broker, and to send e-mail
# Note that you must have the aws cli installed and credentials set in
# order to use AWS (see install instructions for more information).
use_aws: false
# If using AWS, set your region here
aws_region: aws-region
# Add your AWS Key to use for sending SES emails
aws_access_key_id: keyId
aws_secret_access_key: accessKey
# Name of AWS S3 bucket for uploaded broker files. Ignored if use_aws
# is false. NOTE: the dummy value below MUST be changed to the correct
# value if use_aws is true.
aws_bucket: s3-bucket
# Miscellaneous buckets
# Location for various current data sources (location, tas, gtas, submission schedule, etc.)
sf_133_bucket: s3-bucket
# Location for older data sources (historic DUNS, historic FABS, historic FPDS,
archive_bucket: s3-bucket
# Location for other current data sources (FSRS)
data_extracts_bucket: s3-bucket
# Location for other current data sources (Program Activity)
data_sources_bucket: s3-bucket
# Location for deleted records from the FPDS atom feed
fpds_delete_bucket: s3-bucket
# Location for data exports for public
public_files_bucket: s3-bucket
# Location for submission zip downloads
sub_zips_bucket: s3-bucket
db:
# Set your username and password for the db instance
username: admin
password: root