View source: R/cloudformation_operations.R
cloudformation_create_change_set | R Documentation |
Creates a list of changes that will be applied to a stack so that you can review the changes before executing them. You can create a change set for a stack that doesn't exist or an existing stack. If you create a change set for a stack that doesn't exist, the change set shows all of the resources that CloudFormation will create. If you create a change set for an existing stack, CloudFormation compares the stack's information with the information that you submit in the change set and lists the differences. Use change sets to understand which resources CloudFormation will create or change, and how it will change resources in an existing stack, before you create or update a stack.
See https://www.paws-r-sdk.com/docs/cloudformation_create_change_set/ for full documentation.
cloudformation_create_change_set(
StackName,
TemplateBody = NULL,
TemplateURL = NULL,
UsePreviousTemplate = NULL,
Parameters = NULL,
Capabilities = NULL,
ResourceTypes = NULL,
RoleARN = NULL,
RollbackConfiguration = NULL,
NotificationARNs = NULL,
Tags = NULL,
ChangeSetName,
ClientToken = NULL,
Description = NULL,
ChangeSetType = NULL,
ResourcesToImport = NULL,
IncludeNestedStacks = NULL,
OnStackFailure = NULL,
ImportExistingResources = NULL
)
StackName |
[required] The name or the unique ID of the stack for which you are creating a change set. CloudFormation generates the change set by comparing this stack's information with the information that you submit, such as a modified template or different parameter input values. |
TemplateBody |
A structure that contains the body of the revised template, with a minimum length of 1 byte and a maximum length of 51,200 bytes. CloudFormation generates the change set by comparing this template with the template of the stack that you specified. Conditional: You must specify only |
TemplateURL |
The location of the file that contains the revised template. The URL
must point to a template (max size: 460,800 bytes) that's located in an
Amazon S3 bucket or a Systems Manager document. CloudFormation generates
the change set by comparing this template with the stack that you
specified. The location for an Amazon S3 bucket must start with
Conditional: You must specify only |
UsePreviousTemplate |
Whether to reuse the template that's associated with the stack to create the change set. |
Parameters |
A list of |
Capabilities |
In some cases, you must explicitly acknowledge that your stack template contains certain capabilities in order for CloudFormation to create the stack.
Only one of the |
ResourceTypes |
The template resource types that you have permissions to work with if
you execute this change set, such as If the list of resource types doesn't include a resource type that you're updating, the stack update fails. By default, CloudFormation grants permissions to all resource types. Identity and Access Management (IAM) uses this parameter for condition keys in IAM policies for CloudFormation. For more information, see Controlling access with Identity and Access Management in the CloudFormation User Guide. Only one of the |
RoleARN |
The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFormation assumes when executing the change set. CloudFormation uses the role's credentials to make calls on your behalf. CloudFormation uses this role for all future operations on the stack. Provided that users have permission to operate on the stack, CloudFormation uses this role even if the users don't have permission to pass it. Ensure that the role grants least permission. If you don't specify a value, CloudFormation uses the role that was previously associated with the stack. If no role is available, CloudFormation uses a temporary session that is generated from your user credentials. |
RollbackConfiguration |
The rollback triggers for CloudFormation to monitor during stack creation and updating operations, and for the specified monitoring period afterwards. |
NotificationARNs |
The Amazon Resource Names (ARNs) of Amazon Simple Notification Service (Amazon SNS) topics that CloudFormation associates with the stack. To remove all associated notification topics, specify an empty list. |
Tags |
Key-value pairs to associate with this stack. CloudFormation also propagates these tags to resources in the stack. You can specify a maximum of 50 tags. |
ChangeSetName |
[required] The name of the change set. The name must be unique among all change sets that are associated with the specified stack. A change set name can contain only alphanumeric, case sensitive characters, and hyphens. It must start with an alphabetical character and can't exceed 128 characters. |
ClientToken |
A unique identifier for this
|
Description |
A description to help you identify this change set. |
ChangeSetType |
The type of change set operation. To create a change set for a new
stack, specify If you create a change set for a new stack, CloudFormation creates a stack with a unique stack ID, but no template or resources. The stack will be in the REVIEW_IN_PROGRESS state until you execute the change set. By default, CloudFormation specifies |
ResourcesToImport |
The resources to import into your stack. |
IncludeNestedStacks |
Creates a change set for the all nested stacks specified in the
template. The default behavior of this action is set to |
OnStackFailure |
Determines what action will be taken if stack creation fails. If this
parameter is specified, the
For nested stacks, when the |
ImportExistingResources |
Indicates if the change set imports resources that already exist. This parameter can only import resources that have custom names in templates. For more information, see name type in the CloudFormation User Guide. To import resources that do not accept custom names, such as EC2 instances, use the resource import feature instead. For more information, see Bringing existing resources into CloudFormation management in the CloudFormation User Guide. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.