Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
User description
概要
S3 バケットの名前を修正しました。
変更点
original_image_bucket : 花瓶、ラッピング、花の元画像
flower_bucket : ユーザーごとの花瓶、ラッピングの画像
bouquet_bucket : ユーザーごとの花束の画像
影響範囲
Bucket を利用している箇所の変数を変えたが、機能としての変更はないです。
テスト
とくになし。
関連 Issue
PR Type
Enhancement
Description
flowerImageBucket
からoriginalImageBucket
に変更しました。flowerBucket
を追加しました。Changes walkthrough 📝
7 files
backend-stack.ts
S3バケット名の変更と新規バケット追加
src/backend/lib/backend-stack.ts
flowerImageBucket
をoriginalImageBucket
に変更flowerBucket
を新たに追加bouquet.ts
バケット名の変更
src/backend/lib/constructs/bouquet.ts
flowerImageBucket
をoriginalImageBucket
に変更diary.ts
バケット名の変更と新規バケット追加
src/backend/lib/constructs/diary.ts
flowerImageBucket
をoriginalImageBucket
に変更flowerBucket
を新たに追加flower.ts
バケット名の変更と新規バケット追加
src/backend/lib/constructs/flower.ts
flowerImageBucket
をoriginalImageBucket
に変更flowerBucket
を新たに追加bouquet_create.py
環境変数名の変更
src/backend/lambda/bouquet_create/bouquet_create.py
FLOWER_BUCKET_NAME
をORIGINAL_IMAGE_BUCKET_NAME
に変更diary_create.py
環境変数名の変更
src/backend/lambda/diary_create/diary_create.py
FLOWER_IMAGE_BUCKET_NAME
をORIGINAL_IMAGE_BUCKET_NAME
に変更flower_get.py
環境変数名の変更
src/backend/lambda/flower_get/flower_get.py
BUCKET_NAME
をFLOWER_BUCKET_NAME
に変更2 files
test_diary_create.py
テスト用環境変数名の変更
src/backend/test/pytest/test_diary_create.py
FLOWER_IMAGE_BUCKET_NAME
をORIGINAL_IMAGE_BUCKET_NAME
に変更test_flower_get.py
テスト用環境変数名の変更
src/backend/test/pytest/test_flower_get.py
BUCKET_NAME
をFLOWER_BUCKET_NAME
に変更