Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ETL-608] Create raw S3 bucket #103

Merged
merged 1 commit into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config/develop/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
ingestion_bucket_name: recover-dev-ingestion
input_bucket_name: recover-dev-input-data
raw_bucket_name: recover-dev-raw-data
template_bucket_name: recover-dev-cloudformation
intermediate_bucket_name: recover-dev-intermediate-data
processed_data_bucket_name: recover-dev-processed-data
9 changes: 9 additions & 0 deletions config/develop/s3-raw-bucket.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
template:
type: file
path: s3-bucket.yaml
stack_name: recover-dev-raw-bucket
parameters:
BucketName: {{ stack_group_config.raw_bucket_name }}
ConnectToSynapse: "false"
stack_tags:
{{ stack_group_config.default_stack_tags }}
1 change: 1 addition & 0 deletions config/prod/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
ingestion_bucket_name: recover-ingestion
input_bucket_name: recover-input-data
raw_bucket_name: recover-raw-data
template_bucket_name: recover-cloudformation
intermediate_bucket_name: recover-intermediate-data
processed_data_bucket_name: recover-processed-data
9 changes: 9 additions & 0 deletions config/prod/s3-raw-bucket.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
template:
type: file
path: s3-bucket.yaml
stack_name: recover-raw-bucket
parameters:
BucketName: {{ stack_group_config.raw_bucket_name }}
ConnectToSynapse: "false"
stack_tags:
{{ stack_group_config.default_stack_tags }}
Loading