Skip to content

Commit

Permalink
Fix errors in blobstore metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisjbell committed Jul 30, 2020
1 parent e7dd5b4 commit ad5b230
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions overlay/blobstore/meta.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
meta:
blobstore_bucket_env: (( grab params.blobstore_bucket_env || $GENESIS_ENVIRONMENT ))
blobstore_bucket_type: (( grab params.blobstore_bucket_type || $GENESIS_TYPE ))
blobstore_bucket_prefix_default: (( concat meta.blobstore_bucket_env '-' meta.blobstore_bucket_type ))
blobstore_bucket_prefix: (( grab params.blobstore_bucket_prefix || params.blobstore_bucket_prefix_default ))
blobstore_bucket_prefix_default: (( concat meta.blobstore_bucket_env "-" meta.blobstore_bucket_type ))
blobstore_bucket_prefix: (( grab params.blobstore_bucket_prefix || meta.blobstore_bucket_prefix_default ))
blobstore_bucket_suffix: (( grab params.blobstore_bucket_suffix || "((cc_directory_key))" ))
))

blobstore_bucket_path:
app-packages: (( concat meta.blobstore_bucket_prefix "-app-packages-" meta.blobstore_bucket_suffix ))
buildpacks: (( concat meta.blobstore_bucket_prefix "-buildpacks-" meta.blobstore_bucket_suffix ))
Expand Down

0 comments on commit ad5b230

Please sign in to comment.