https://pulumi.com logo
b

billowy-laptop-45963

01/23/2020, 6:32 PM
I'm looking to reuse cloudformation infrastructure with aws.cloudformation.Stack() resources. aws.cloudformation.Stack has a limit on the template size on disk after which you have to upload it to s3 and give it an s3 uri. Is there anything already in pulumi I can use to upload templates to a temporary place in s3 to be able to use with aws.cloudformation.Stack ?
w

white-balloon-205

01/23/2020, 6:55 PM
Yeah -
aws.s3.BucketObject
will upload a local file to S3. This is used in many examples in
pulumi/examples
repo.
b

billowy-laptop-45963

01/23/2020, 6:56 PM
but then that becomes a resource that is part of the managed infrastructure right?
w

white-balloon-205

01/23/2020, 7:00 PM
Yes - and it is versioned as updates are needed - and cleaned up when infrastructure is deleted.