This is the AWS CDK v1 Developer Guide. The older CDK v1 entered maintenance on June 1, 2022 and will now only receive critical bug fixes and security patches. New features will be developed for CDK v2 exclusively. Support for CDK v1 will end entirely on June 1, 2023. Migrate to CDK v2 to have access to the latest features and fixes.
Parameters
AWS CloudFormation templates can contain parameters—custom values that are supplied at deployment time and incorporated into the template. Since the AWS CDK synthesizes AWS CloudFormation templates, it too offers support for deployment-time parameters.
Using the AWS CDK, you can both define parameters, which can then be used in the properties of constructs you create, and you can also deploy stacks containing parameters.
When deploying the AWS CloudFormation template using the AWS CDK Toolkit, you provide the parameter values on the command line. If you deploy the template through the AWS CloudFormation console, you are prompted for the parameter values.
In general, we recommend against using AWS CloudFormation parameters with the AWS CDK. The usual ways to pass values into AWS CDK apps are context values and environment variables. Because they are not available at synthesis time, parameter values cannot be easily used for flow control and other purposes in your CDK app.
Note
To do control flow with parameters, you can use CfnCondition
constructs, although this is awkward compared to native
if
statements.
Using parameters requires you to be mindful of how the code you're writing behaves at deployment time, as well as at synthesis time. This makes it harder to understand and reason about your AWS CDK application, in many cases for little benefit.
It is better, again in general, to have your CDK app accept any necessary information in some well-defined way and use it directly to declare constructs in your CDK app. An ideal AWS CDK-generated AWS CloudFormation template is concrete, with no values remaining to be specified at deployment time.
There are, however, use cases to which AWS CloudFormation parameters are uniquely suited. If you have separate teams defining and deploying infrastructure, for example, you can use parameters to make the generated templates more widely useful. Additionally, the AWS CDK's support for AWS CloudFormation parameters lets you use the AWS CDK with AWS services that use AWS CloudFormation templates (such as Service Catalog), which use parameters to configure the template being deployed.
Defining parameters
Use the CfnParameter
class to define a parameter. You'll want to specify at
least a type and a description for most parameters, though both are technically optional. The
description appears when the user is prompted to enter the parameter's value in the AWS CloudFormation
console. For more information on the available types, see Types.
Note
You can define parameters in any scope, but we recommend defining parameters at the stack level so that their logical ID does not change when you refactor your code.
Using parameters
A CfnParameter
instance exposes its value to your AWS CDK app via a token. Like all tokens, the parameter's token is resolved at
synthesis time, but it resolves to a reference to the parameter defined in the AWS CloudFormation template,
which will be resolved at deploy time, rather than to a concrete value.
You can retrieve the token as an instance of the Token
class, or in string,
string list, or numeric encoding, depending on the type of value required by the class or
method you want to use the parameter with.
For example, to use a parameter in a Bucket definition:
Deploying with parameters
A generated template containing parameters can be deployed in the usual way through the AWS CloudFormation console; you are prompted for the values of each parameter.
The AWS CDK Toolkit (cdk
command-line tool) also supports specifying parameters
at deployment. You may provide these on the command line following the
--parameters
flag. You might deploy a stack that uses the
uploadBucketName
parameter like this.
cdk deploy MyStack --parameters uploadBucketName=uploadbucket
To define multiple parameters, use multiple --parameters
flags.
cdk deploy MyStack --parameters uploadBucketName=upbucket --parameters downloadBucketName=downbucket
If you are deploying multiple stacks, you can specify a different value of each parameter for each stack by prefixing the name of the parameter with the stack name and a colon.
cdk deploy MyStack YourStack --parameters MyStack:uploadBucketName=uploadbucket --parameters YourStack:uploadBucketName=upbucket
By default, the AWS CDK retains values of parameters from previous deployments and uses them
in subsequent deployments if they are not specified explicitly. Use the
--no-previous-parameters
flag to require all parameters to be specified.