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
feat: add s3-bucket and s3-prefix inputs for large template upload (#196)
* feat: add s3-bucket and s3-prefix inputs for large template upload (#180)
When s3-bucket is provided, the action uploads the local template file
to S3 and uses TemplateURL instead of TemplateBody, avoiding the
51,200 byte inline template limit.
Closes#180
* chore: rebuild dist
Copy file name to clipboardExpand all lines: action.yml
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,12 @@ inputs:
66
66
execute-change-set-id:
67
67
description: "Execute an existing change set by ID or name instead of creating a new one. When provided, only 'name' (stack name) is required."
68
68
required: false
69
+
s3-bucket:
70
+
description: "The name of the S3 bucket where the template will be uploaded before creating the change set. When provided, the template file is uploaded to S3 and TemplateURL is used instead of TemplateBody, avoiding the 51,200 byte inline limit."
71
+
required: false
72
+
s3-prefix:
73
+
description: "A prefix to use for the S3 object key when uploading the template. The final key will be '<s3-prefix>/<template-filename>'. Defaults to no prefix."
74
+
required: false
69
75
deployment-mode:
70
76
description: "The deployment mode for the change set. Use 'REVERT_DRIFT' to create a change set that reverts drift. Defaults to standard deployment."
0 commit comments