great-sunset-355
06/22/2021, 10:30 AMeb cli
that zips and uploads the app directory to S3 bucket and references that to EB environment
When I use this with pulumi
it will manage the object and when it changes it deletes the old one and uploads a new version instead of preserving the old object.
Do I need to write my own function with aws sdk to zip the file and upload or can pulumi do that for me?
Thank you
eb_app_archive = s3.BucketObject(
f"app-archive-{ver}",
bucket=eb_s3_bucket.id,
key=f"jan-{ver}.zip",
source=pulumi.FileArchive("../app"),
)
brave-planet-10645
06/22/2021, 10:33 AMgreat-sunset-355
06/22/2021, 12:03 PMbrave-planet-10645
06/22/2021, 1:12 PMBucketObject
resourcesgreat-sunset-355
06/22/2021, 1:18 PMApplicationVersion
object which should trigger environment version change as well