You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe cloudformation package part can currently be replicated using the existing AmazonS3FileUploadTask, Gradle variables and CloudFormation parameters. For example, in my case I read an S3 bucket name and key from config, upload code for a Lambda function to S3 using the AmazonS3FileUploadTask with the given bucket and key, and pass the same key and bucket as CloudFormation parameters when deploying using awsCfnMigrateStack.
The cloudformation package command creates and executes a change set, which is required for templates containing transforms. I've added a similar Gradle task that does the same here: #146. I've done some testing and it works well for my use cases; would be good if others could take a look.
Currently, I have my build tool download python and the aws cli to deploy my SAM template. My current deploy task looks like:
I think I'd be able to use this tool and eliminate the aws cli if it supported the
cloudformation package
andcloudformation deploy
commands.The text was updated successfully, but these errors were encountered: