Skip to content

Commit 8e34bc9

Browse files
committed
Use env file syntax for environment variables
This makes them easier to copy
1 parent 005cd2e commit 8e34bc9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

buckup/bucket_creator.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def create_bucket(self, name, region):
181181
)
182182
)
183183
print()
184-
print("\tAWS_STORAGE_BUCKET_NAME", name)
184+
print(f"AWS_STORAGE_BUCKET_NAME='{name}'")
185185
print()
186186
bucket.wait_until_exists()
187187
return bucket
@@ -206,8 +206,8 @@ def create_user_access_key_pair(self, user):
206206
)
207207
)
208208
print()
209-
print("\tAWS_ACCESS_KEY_ID", access_key_pair.access_key_id)
210-
print("\tAWS_SECRET_ACCESS_KEY", access_key_pair.secret_access_key)
209+
print(f"AWS_ACCESS_KEY_ID='{access_key_pair.access_key_id}'")
210+
print(f"AWS_SECRET_ACCESS_KEY='{access_key_pair.secret_access_key}'")
211211
print()
212212
return access_key_pair
213213

0 commit comments

Comments
 (0)