mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-02-22 16:41:28 +08:00
Add new S3_SYSTEM_BUCKET_NAME env
This commit is contained in:
parent
5480c2ee72
commit
4d6de1e2a8
@ -125,7 +125,7 @@ func S3SaveMigration() error {
|
||||
})
|
||||
|
||||
_, err := svc.CreateBucket(context.Background(), &s3.CreateBucketInput{
|
||||
Bucket: aws.String("pokerogue-system"),
|
||||
Bucket: aws.String(os.Getenv("S3_SYSTEM_BUCKET_NAME")),
|
||||
})
|
||||
if err != nil {
|
||||
log.Printf("error while creating bucket (already exists?): %s", err)
|
||||
@ -154,7 +154,7 @@ func S3SaveMigration() error {
|
||||
}
|
||||
|
||||
_, err = svc.PutObject(context.Background(), &s3.PutObjectInput{
|
||||
Bucket: aws.String("pokerogue-system"),
|
||||
Bucket: aws.String(os.Getenv("S3_SYSTEM_BUCKET_NAME")),
|
||||
Key: aws.String(username),
|
||||
Body: bytes.NewReader(json),
|
||||
})
|
||||
|
@ -124,7 +124,7 @@ func StoreSystemSaveData(uuid []byte, data defs.SystemSaveData) error {
|
||||
}
|
||||
|
||||
_, err = client.PutObject(context.Background(), &s3.PutObjectInput{
|
||||
Bucket: aws.String("pokerogue-system"),
|
||||
Bucket: aws.String(os.Getenv("S3_SYSTEM_BUCKET_NAME")),
|
||||
Key: aws.String(username),
|
||||
Body: bytes.NewReader(json),
|
||||
})
|
||||
@ -241,7 +241,7 @@ func GetSystemSaveFromS3(uuid []byte) (defs.SystemSaveData, error) {
|
||||
client := s3.NewFromConfig(cfg)
|
||||
|
||||
s3Object := s3.GetObjectInput{
|
||||
Bucket: aws.String("pokerogue-system"),
|
||||
Bucket: aws.String(os.Getenv("S3_SYSTEM_BUCKET_NAME")),
|
||||
Key: aws.String(username),
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user