Skip to content

Commit

Permalink
chore(config): for dicts, use {} as default in yaml instead of []
Browse files Browse the repository at this point in the history
  • Loading branch information
Avantol13 committed Mar 2, 2020
1 parent 868ec89 commit e88002b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions fence/config-default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -449,8 +449,8 @@ DBGAP_ACCESSION_WITH_CONSENT_REGEX: '(?P<phsid>phs[0-9]+)(.(?P<version>v[0-9]+))
# access for users.
# //////////////////////////////////////////////////////////////////////////////////////
# Configuration for various storage systems for the backend
# NOTE: Remove the [] and supply backends if needed. Example in comments below
STORAGE_CREDENTIALS: []
# NOTE: Remove the {} and supply backends if needed. Example in comments below
STORAGE_CREDENTIALS: {}
# Google Cloud Storage backend
#
# 'google':
Expand All @@ -476,8 +476,8 @@ STORAGE_CREDENTIALS: []
# AWS BUCKETS AND CREDENTIALS
# - Support `/data` endpoints
# //////////////////////////////////////////////////////////////////////////////////////
AWS_CREDENTIALS: []
# NOTE: Remove the [] and supply creds if needed. Example in comments below
AWS_CREDENTIALS: {}
# NOTE: Remove the {} and supply creds if needed. Example in comments below
# 'CRED1':
# aws_access_key_id: ''
# aws_secret_access_key: ''
Expand All @@ -487,8 +487,8 @@ AWS_CREDENTIALS: []

# NOTE: the region is optonal for s3_buckets, however it should be specified to avoid a
# call to GetBucketLocation which you make lack the AWS ACLs for.
S3_BUCKETS: []
# NOTE: Remove the [] and supply buckets if needed. Example in comments below
S3_BUCKETS: {}
# NOTE: Remove the {} and supply buckets if needed. Example in comments below
# bucket1:
# cred: 'CRED1'
# region: 'us-east-1'
Expand Down

0 comments on commit e88002b

Please sign in to comment.