actions-marketplace-validations/AWS CloudFormation "Deploy CloudFormation Stack" Action for GitHub Actions
Deploys a AWS CloudFormation stack
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Activelast commit Mar 27, 2026
- License
- MIT
Pinned Snippet
uses: actions-marketplace-validations/aws-actions_aws-cloudformation-github-deploy@9ad1a403c6d63aaf742e94318e2e2aaf9ebca15f # no releases — HEAD as of 2026-07-13tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| mode | Operation mode: 'create-and-execute' (default), 'create-only', or 'execute-only' | no | create-and-execute |
| name | The name of the CloudFormation stack | yes | — |
| template | The path or URL to the CloudFormation template | no | — |
| capabilities | The comma-delimited list of stack template capabilities to acknowledge. Defaults to 'CAPABILITY_IAM' | no | CAPABILITY_IAM |
| parameter-overrides | The parameters to override in the stack inputs. You can pass a comma-delimited list or a file URL. Comma-delimited list has each entry formatted as <ParameterName>=<ParameterValue> or <ParameterName>="<ParameterValue>,<ParameterValue>". A JSON file can be a local file with a "file://" prefix or remote URL. The file should look like: [ { "ParameterKey": "KeyPairName", "ParameterValue": "MyKey" }] | no | — |
| no-execute-changeset | Indicates whether to execute to the change set or have it reviewed (default: false) | no | false |
| no-delete-failed-changeset | Indicates whether to delete to a failed change set (default: false) | no | false |
| fail-on-empty-changeset | If the CloudFormation change set is empty, fail the action (default: false) | no | false |
| disable-rollback | Disable rollback of the stack if stack creation fails (default: false). This input is only used for stack creation, not for stack update | no | false |
| timeout-in-minutes | The amount of time that can pass before the stack status becomes CREATE_FAILED. This input is only used for stack creation, not for stack update | no | — |
| notification-arns | The comma-delimited list of Amazon SNS topic ARNs to publish stack related events | no | — |
| role-arn | The Amazon Resource Name (ARN) of an AWS Identity and Access Management (IAM) role that AWS CloudFormation assumes to create the stack. AWS CloudFormation uses the role's credentials to make calls on your behalf. AWS CloudFormation always uses this role for all future operations on the stack. As long as users have permission to operate on the stack, AWS CloudFormation uses this role even if the users don't have permission to pass it. Ensure that the role grants least privilege. If you don't specify a value, AWS CloudFormation uses the role that was previously associated with the stack | no | — |
| tags | Key-value pairs to associate with this stack. This input should be JSON-formatted, for example [ { "Key": "string", "Value": "string" } ] | no | — |
| termination-protection | Whether to enable termination protection on the specified stack (default: false). This input is only used for stack creation, not for stack update | no | false |
| http-proxy | Proxy to use for the AWS SDK agent | no | — |
| change-set-name | The name of the change set to create. Defaults to '<stack-name>-CS' | no | — |
| include-nested-stacks-change-set | Creates a change set for the all nested stacks specified in the template. Defaults to '0' (will not include nested stacks) | no | 0 |
| execute-change-set-id | Execute an existing change set by ID or name instead of creating a new one. When provided, only 'name' (stack name) is required. | no | — |
| deployment-mode | The deployment mode for the change set. Use 'REVERT_DRIFT' to create a change set that reverts drift. Defaults to standard deployment. | no | — |
Outputs
| name | description |
|---|---|
| stack-id | The id of the deployed stack. In addition, any outputs declared in the deployed CloudFormation stack will also be set as outputs for the action, e.g. if the stack has a stack output named 'foo', this action will also have an output named 'foo'. |
| change-set-id | The id of the created change set (only when no-execute-changeset is true) |
| change-set-name | The name of the created change set (only when no-execute-changeset is true) |
| has-changes | Whether the change set contains any changes (only when no-execute-changeset is true) |
| changes-count | Number of changes in the change set (only when no-execute-changeset is true) |
| changes-summary | JSON summary of changes in the change set (only when no-execute-changeset is true) |
| changes-markdown | Markdown-formatted change set summary for PR comments (only when no-execute-changeset is true) |