sceptre-cdk-handler


Namesceptre-cdk-handler JSON
Version 2.1.0 PyPI version JSON
download
home_pagehttps://github.com/sceptre/sceptre-cdk-handler
SummaryAWS CDK Template Handler
upload_time2023-03-19 14:49:29
maintainer
docs_urlNone
authorSceptre
requires_python
licenseApache2
keywords sceptre sceptre-template-handler
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # README

## What is this?

`sceptre-cdk-handler` is a TemplateHandler for Sceptre (versions 2.7 and up) that lets you use a
Python AWS CDK stack class as a stack's template.

This template handler will use the AWS CDK to synthesize the CDK stack into a CloudFormation template
and then run `npx cdk-assets` to publish any required assets to S3/ECR.

**By using the CDK Handler, you are letting CDK synthesize a template, and upload artifacts to S3 and ECR
and then using Sceptre to actually do the deployment of the template to a stack.**
In other words, by using this handler with Sceptre, _you skip ever using `cdk deploy`; It's not needed_.

By using this handler, you can now use CDK templates with all your favorite Sceptre commands, like
`launch`, `validate`, `generate`, and `diff` (along with all the rest)!

## Why would you want to use CDK with Sceptre?
**Aren't those two ways to do the same thing?**

CDK and Sceptre really specialize in two different things, though there's definitely overlap.

CDK's whole philosophy is that developers should be able to write code in a language they know and
have that compile into an _artifact_ that defines cloud infrastructure resources. Of course, that
"artifact" is ultimately a CloudFormation template. **CDK's specialty, thus, is really in _programmatic_
template generation with sane defaults and constructs that simplify infrastructure configuration.** It
hides a lot of the "magic" behind the scenes so developers can simply prescribe what they want. CDK
also has deployment mechanisms to deploy that infrastructure, but they aren't really CDK's strength.

90% of everything CDK does is at "compile-time", when the templates are being rendered. It has a very
limited ability to execute custom code at deployment time, and never really _between_ the deployments
of custom stacks and resources. Furthermore, its way of wiring together stacks uses CloudFormation
exported outputs and imports, which are rather rigid and can have a host of unintended consequences,
especially when values might change.

In contrast, Sceptre is a _deployment orchestration_ tool. It excels in deploying entire environments
of stacks, "wiring them together" using powerful (and easily customizable) resolvers, hooks, and
template handlers. **Sceptre is "template agnostic"**, supporting YAML and JSON CloudFormation
templates, even augmented with Jinja2 execution logic. Furthermore, out-of-the-box, Sceptre supports
_any custom Python code to generate templates_, with the only requirement being that it needs to return
a string.

_So why use CDK and Sceptre together?_ Because CDK provides excellent template generation capabilities
and Sceptre will gladly use those. Furthermore, Sceptre has the ability to easily wire together an
entire environment _regardless of how that environment's CloudFormation templates are generated._ Thus,
Sceptre will happily (and fairly intuitively) deploy (and "wire together") stacks developed in vanilla
CloudFormation YAML/JSON, templates augmented with Jinja2, Troposphere-generated templates,
AWS SAM templates, and CDK constructs. They can be deployed as a coherent environment that
interoperates, deployed with insight into the various dependencies between stacks. Furthermore,
using Sceptre's powerful hooks, you can execute customized pre-deployment and post-deployment code
to prepare the way for or clean up after a given stack deployment. This is powerful and not something
CDK otherwise provides a means to accomplish on its own.

## How to install sceptre-cdk-handler

1) Install the Sceptre CDK handler using `pip install sceptre-cdk-handler`
2) Install the AWS CDK following the instructions in [AWS CDK Getting Started](https://docs.aws.amazon.com/cdk/v2/guide/getting_started.html)
3) Install the [CDK-Assets](https://www.npmjs.com/package/cdk-assets) NPM package using `npm install cdk-assets`

If your project will require building and pushing docker image assets to ECR, you will also need to
install docker and make it accessible on your PATH.

## How to use sceptre-cdk-handler

The template "type" for this handler is `cdk`.

### Python Stack Classes vs. cdk.json

The template `path` argument can either specify a Python file with a `SceptreCdkStack class` (see
"Making your Python stack class" below) or it can specify a `cdk.json` file. Template synthesis and
asset handling (both bootstrapped and bootstrapless) are fully supported by both approaches.

#### Python Stack Classes
If your CDK infrastructure is developed in Python (one of CDK's supported languages), creation and
configuration of your CDK infrastructure can be done more simply by cutting out a lot of the extra
CDK machinery and just pointing Sceptre at a Python file via `path` and a specific class on that
file via `class_name`. The CDK Handler can have a tighter integration with your Stack Class if done
this way, such as being able to provide more complex data structures in your cdk context and being
able to pass `sceptre_user_data`. You won't need a lot of the other bootstrapped CDK files and
configurations (such as a `cdk.json` file). You could really just have a single python file defining
your Stack class!

#### cdk.json
Alternatively, you can point your template handler's `path` to a `cdk.json` file. This will let you
utilize CDK infrastructure developed in _any supported CDK language_, not just Python. Thus, if you
have used `cdk` to initialize a project and your `cdk.json` is valid, directing your template handler
to that `cdk.json` will allow the CDK Template Handler to fully utilize your CDK project to generate
the appropriate stack template(s).

**Important caveats of using cdk.json:**
1. It is assumed that the root directory for running CDK commands is whatever directory your cdk.json
is in.
2. You will be responsible for making sure that your PATH and environment is able to utilize whatever
language/tooling that your CDK project is configured for (i.e. TypeScript, Go, Java, C#, etc...).
The CDK Template Handler will be invoking CDK via a subprocess using the same PATH as it is invoked
with. Furthermore, any additional packages used by your CDK project should be installed so they can
be utilized. This might require some commands for environment setup being invoked before running
any Sceptre commands.
3. Complex data structures (i.e. lists and dicts) are not supported in your CDK context from Sceptre.
You can explicitly set those up on your cdk.json (if they're required), but the CDK template handler
will only accept simple key/value pairs for your context that it passes.
4. `sceptre_user_data` is not supported for supplying values to the template handler. Utilize the
CDK context if you need to pass values from Sceptre.
5. You must pass the `stack_logical_id` parameter to the handler to identify the specific Stack's
logical id that you are wanting to synthesize via CDK.
6. The Bootstrapless Synthesizer _is_ supported and `bootstrapless_config` parameters will be
converted to their associated environment variables and supplied to the CDK process. **However**,
you will need to explicitly configure your Stack class with the Bootstrapless Synthesizer as
documented in the [Bootstrapless Synthesizer Readme](https://github.com/aws-samples/cdk-bootstrapless-synthesizer/blob/main/README.md)
in order for those parameters to actually be utilized. Furthermore, the Bootstrapless Synthesizer
will need to be published in your project's language and installed so it can be accessed. At the
time this is being written, it only appears as if Python, JavaScript, and TypeScript are supported
by the Bootstrapless Synthesizer.

### Deployment Types
The CDK Handler supports two different deployment types, which function somewhat differently. These
are "bootstrapped" and "bootstrapless", both passed to the `deployment_type` template handler argument.

#### The "bootstrapped" deployment_type
The "bootstrapped" deployment type is a more typical CDK-like way to deploy infrastructure and
conforms more to the standard ways _CDK_ operates. If your organization has a lot of CDK infrastructure,
using this deployment_type likely will allow Sceptre to interoperate with existing patterns and
policies.

The `"bootstrapped"` deployment_type causes Sceptre assets (namely S3-destined files and
ECR-destined images) to be deployed using the usual CDK-bootstrapped machinery. Specifically, by
referencing a "qualifier", CDK looks for a corresponding stack in the AWS account that contains the
specific S3 bucket and ECR repo, as well as IAM roles to be assumed in order to build and push those
assets up to the cloud.

In order to use the "bootstrapped" deployment type to push assets to the cloud, a CDK bootstrap stack
with matching qualifier must already be deployed. It may be deployed via CDK (outside of Sceptre) or
you can use CDK to generate the bootstrap template for Sceptre to deploy using
`cdk bootstrap --show-template > cdk-bootstrap.yaml`. It is recommended, if not reusing an existing
bootstrap stack, to deploy the bootstrap stack using Sceptre, as it will allow you to add outputs to
the template and reference those when setting up your CDK-based StackConfigs.

With that said, a bootstrap stack is not actually necessary if your stack includes no S3 or ECR
assets to push.

**Important:** See section below on IAM implications and behavior of using this handler and how it
corresponds to the roles in the bootstrap stack.

#### The "bootstrapless" deployment_type
While the "bootstrapped" deployment_type is more similar to CDK's way of operating, it's less typical
for Sceptre. Sceptre shines by allowing you to define your infrastructure however you want (in however
many stacks you want) and then "wire them together" using powerful (and very handy) hooks and
resolvers (like `!stack_output`). Thus, a more "Sceptre-like" way would be to avoid using the CDK
bootstrap stack and just providing references to the required asset-related infrastructure with
resolvers like `!stack_output`.

The "bootstrapless" deployment_type uses the [cdk-bootstrapless-synthesizer](https://github.com/aws-samples/cdk-bootstrapless-synthesizer)
to handle assets without needing a bootstrap stack. Instead, you can provide the relevant asset-related
configurations as needed, pulling values from other stack outputs using resolvers.

If you don't need to utilize a pre-existing bootstrap stack or don't need or want the overhead of
having a bootstrap stack with all the infrastructure resources created along with that (many of which
you might not actually need), the "bootstrapless" deployment_type is a simpler approach. However,
it will require you to supply the needed bucket, ECR repository, and other configurations if you're
deploying file or image assets. These will need to be supplied on the `bootstrapless_config` argument.

**Why wouldn't you want to use the CDK Boostrap stack if it provides "everything you'd need"?**
A CDK bootstrap stack has a lot of resources, defined all together in a single stack. It's
auto-generated via CDK. As such, it has a lot of resources you might not actually need,
depending on the sort of resources you have in your stack. For example, if you aren't actually
building and pushing images to ECR, creating a new ECR repository (which is in every CDK bootstrap
stack) isn't necessary.

Also, every CDK bootstrap stack contains 4 different IAM roles used for four different actions
(cloudformation service role, execution role, file asset pushing, image asset pushing). While it is
possible to make Sceptre use all four of these roles for all four of these actions, it's not the
normal way Sceptre operates (where it uses the same role/profile for the all deployment actions).
For more information on this handler and IAM, see [the section on IAM](#IAM-and-authentication).

If there is an existing bootstrap stack you need Sceptre to integrate
with, using `deployment_type: "bootstrapped"` will adhere to those norms. But if you don't need to
integrate with an existing CDK ecosystem and the rest of your infrastructure is deployed with
Sceptre as well, using `deployment_type: "bootstrapless"`  will prove a simpler, more straight-forward
way to deploy and integrate your CDK-stacks into the rest of your environment.

### Making your Python stack class
_Note:_ This section doesn't apply if you're referencing a `cdk.json` file for your `path` argument.

In order to properly support this handler's functionality, your Stack class on your Python file
should subclass [`sceptre_cdk_handler.SceptreCdkStack`](https://github.com/Sceptre/sceptre-cdk-handler/blob/main/sceptre_cdk_handler/cdk_builder.py).
Furthermore, it should have this `__init__` signature and invoke the base class `__init__()` this
way:

```python
import aws_cdk
from sceptre_cdk_handler import SceptreCdkStack

# Subclass SceptreCDKStack
class CdkStack(SceptreCdkStack):
  def __init__(self, scope: aws_cdk.App, id: str, sceptre_user_data: dict, **kwargs):
    # Be sure you invoke super().__init__() and pass the **kwargs along to it
    super().__init__(scope, id, sceptre_user_data, **kwargs)
    # and then you can add your resources...
```

### Importing from other modules
Your CDK Stack module _can_ import from other packages/modules in your local directory structure.
This is useful to break your constructs up with a file-based organization. While you could
theoretically point the CDK handler to any python file path on your computer, there are limitations
on how other modules will be accessible for import:

1. All modules/packages to be imported **must be somewhere inside your current working directory.**
If the files you intend to import are _outside_ your CWD, they will not be accessible.
2. They must _either_...
   1. Be in the immediate directory structure between your CWD and the python file your
handler is referencing via `path` _or_
   2. Be inside importable python packages that _are_ in the immediate structure between your CWD and
your handler's `path`.

```
other_directory/
    file.py                         # You CANNOT import this because it is out of your CWD
project_directory/
   templates/                       # No __init__.py in here, but it's in the directory hierarchy of
                                    # your_cdk_stack.py, so you can technically import any direct
                                    # children of this directory.

       random_python_file.py        # You CAN import this ("import random_python_file")
       unrelated_directory/         # No __init__.py in here...
           nested_dir/              # No __init__.py in here...
               some_python_file.py  # You CANNOT import this because this isn't in a python package
       my_cdk_files/
           __init__.py              # this lets you import from this dir (my_cdk_files/)
           constructs/
               __init__.py          # This lets you import from this dir (constructs/)
               ec2/
                   __init__.py      # This lets you import from this dir (ec2/)
                   vpc.py           # You CAN import this (my_cdk_files.constructs.ec2.vpc)
                   autoscaling.py   # You CAN import this (my_cdk_files.constructs.ec2.autoscaling)
           stacks/
               __init__.py          # This lets you import from this dir (my_cdk_files/)
               >> your_cdk_stack.py # This is where your CDK Handler points to
   scripts/
      some_dir/
          random_python_file.py     # You cannot import this because it's not in the directory
                                    # hierarchy of your_cdk_stack.py and it's not in a python package
                                    # importable from any of the directories that ARE in that hierarchy.
   app/
       __init__.py                  # This makes app/ an importable python package
       my_application_resources.py  # You CAN import this (app.my_application_resources)
```


### Creating your StackConfig
Here is a simple example of how to configure the template handler. For a more complete Sceptre
Project configuration, with examples of both `bootstrapped` and `bootstrapless` configurations,
see [the example directory in this repo](sceptre-example/).

```yaml
template:
    # To use the CDK handler, you should use the "cdk" template type
    type: cdk
    # The path is (by default) within your project's templates/ directory. However, you can also
    # make it relative to your templates directory, like "../my_cdk_app/cdk.json".
    path: lambda_stack.py
    deployment_type: bootstrapless
    # bootstrapless_config are the snake_cased arguments passed to the cdk-bootstrapless-synthesizer
    # for definitions of possible parameters, see the API docs here:
    # https://github.com/aws-samples/cdk-bootstrapless-synthesizer/blob/main/API.md
    bootstrapless_config:
        # You can use !stack_attr to reference other stack attributes that happen
        # to be set with resolvers to chain the resolver value. It makes sense to use the
        # same bucket as Sceptre uses for its template uploads for your file assets.
        file_asset_bucket_name: !stack_attr template_bucket_name
        # It can be useful to apply the same prefix as your template_key_prefix to ensure your
        # assets are namespaced similarly to the rest of Sceptre's uploaded artifacts.
        file_asset_prefix: {{template_key_prefix}}/cdk-assets
        # You can use !stack_output (and other resolvers) in all of these configurations, which is
        # especially helpful when "wiring together" this stack with other stacks deployed in your
        # environment.
        image_asset_repository_name: !stack_output ecr.yaml::RepoName
    # You can explicitly define your stack name, or use the default class name "CdkStack"
    class_name: MyLambdaStack

# Parameters are DEPLOY-TIME values passed to the CloudFormation template. Your CDK stack construct
# needs to have CfnParameters in order to support this, though.
parameters:
    SpecialEnv: "This is my Sceptre test"

# sceptre_user_data is passed to your Stack Class's constructor for supplying values at COMPILE-TIME.
sceptre_user_data:
    special_variable: "use this directly at compile_time"
```

### Arguments:

* `path` (string, required): The path to the CDK template file, relative to the `templates/` directory of
  your project. This should be a python file with your stack class, subclassing `SceptreCdkStack`.
* `deployment_type` (string, required): This determines the way CDK assets should be pushed to the
  cloud. Options are `"bootstrapless"` and `"bootstrapped"`. See section above on "How to use" for
  more details.
* `bootstrap_qualifier` (string, optional): This is only used if you are using the `bootstrapped`
  deployment type. This qualifier refers to the qualifier on a given CDK bootstrap stack in your
  AWS account, whether deployed via CDK externally or within the same Sceptre project. If you use
  the `bootstrapped` deployment_type and do NOT specify a qualifier, CDK will default to the default
  qualifier and look to use that in your account.
* `class_name` (string, optional): The name of the class on your CDK template to synthesize.
  Defaults to `CdkStack`. This is only used if your `path` points to a Python file.
* `context` (dict, optional): The context for the CDK Stack. See [CDK Context](https://docs.aws.amazon.com/cdk/v2/guide/context.html)
for further info on this. This only supports lists and dicts as values if your `path` points to a
Python file.
* `stack_logical_id` (string, conditional): The name of the logical ID of the stack this handler
references. This is only used (but required) if your `path` points to a `cdk.json` file.
* `bootstrapless_config` (dict, optional): This is only used if you are using the `bootstrapless`
deployment type. The keys here are the snake-casings of the documented parameters using the
[cdk-bootstrapless-synthesizer](https://github.com/aws-samples/cdk-bootstrapless-synthesizer/blob/main/API.md):
    - "file_asset_bucket_name" (required if your stack has file assets)
    - "file_asset_prefix"
    - "file_asset_publishing_role_arn"
    - "file_asset_region_set"
    - "image_asset_account_id"
    - "image_asset_publishing_role_arn"
    - "image_asset_region_set"
    - "image_asset_repository_name" (required if your stack has image assets)
    - "image_asset_tag_prefix"
    - "template_bucket_name"

### Passing Data to a CDK Stack

There are three methods for passing data to a CDK Stack; using `sceptre_user_data`, CDK Context or CloudFormation parameters:

#### Sceptre User Data

Data can be passed to a CDK stack using the `sceptre_user_data` block of the Sceptre stack config.
This will be resolved when the template is synthesized and can contain complex objects. Since
`sceptre_user_data` is a resolvable property, you can use resolvers to pass values from other
deployed stacks and other sources as well.`

**Note**: `sceptre_user_data` is not supported if your `path` points to a `cdk.json` file.

#### CDK Context

Data can be passed to a CDK application (and accessed in your stack) via the `context` template
handler argument. Since Template handler arguments are resolvable, you can also use resolvers here.

**Note**: Complex context values (in lists and dicts) are only supported for Python stacks. If your
`path` points to a `cdk.json` file, only string values are supported.

#### CloudFormation Parameters

Data can be passed to a synthesized CDK template using standard CloudFormation parameters.
These are resolved when the CloudFormation stack is created from the template, but can only contain
string or list values as supported by Cloudformation. In order to use these, you need to create
[`CfnParameter`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.CfnParameter.html) resources
in your stack class.

### Stack Outputs

CloudFormation stack outputs can be defined in the CDK stack and then referenced from other Sceptre
stacks using the standard Sceptre `!stack_output` resolver. In order to do this, your Stack Class
will need to create [`CfnOutput`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.CfnOutput.html)
resources in your stack class.

### CDK Feature Flags and Custom Bootstrap

To set any [CDK Feature Flags](https://docs.aws.amazon.com/cdk/v2/guide/featureflags.html), set these
in the handler's `context` argument. See [lambda-stack-bootstrapped.yaml](sceptre-example/config/lambda-stack-bootstrapped.yaml)
for an example of this.

Reminder: the `context` argument is a standard Sceptre resolvable property, so resolvers and/or Jinja
variables can be used for values.

### How exactly does this handler work?

When using _only_ the CDK CLI (not Sceptre) to deploy using `cdk deploy`, the CDK CLI effectively performs
the following steps:

1. Synthesises any constructs defined within the CDK Class into a CloudFormation Template and a
bundle of required assets.
2. Publishes the assets to a CDK bootstrapped S3 bucket and/or ECR registry.
3. Creates/updates a CloudFormation stack from the synthesized template.

When you use Sceptre with this handler, the CDK handler performs steps 1-2 above to create a template
that Sceptre can use and publish the assets, **but it does not use CDK to deploy it!**. Instead,
Sceptre can use that template produced in step 1 above to perform all its usual commands with all
it's usual magic!

In other words, using this handler lets you use resolvers, put your CDK stack into StackGroups, let
you name your stack according to Sceptre's naming conventions, `validate`, `diff`, and more! Basically,
the CDK stack can be managed using Sceptre just like any other.

### IAM and authentication

There are several dimensions to how using this handler applies to IAM roles, policies, and permissions.

#### The Role to deploy the CloudFormation Stacks themselves
Sceptre will always use the AWS environment configuration, `profile` and/or `iam_role` to deploy
the CloudFormation _Stacks_ themselves. This is consistent with how Sceptre always operates and it's
no different when using this handler.

If you want Sceptre to assume the Deployment Role from the CDK bootstrap stack, you'll need to
specify that role as the `iam_role` for your stack(s). If you want to do this, it's recommended you
add the deployment role as an output on your bootstrap stack and then set `iam_role` using a
`!stack_output` or `!stack_output_external` resolver. Be aware that your current AWS environment's
credentials will need permission to assume this role.

For more information on the `iam_role` configuration, see [Sceptre docs on it](https://docs.sceptre-project.org/3.2.0/docs/stack_config.html#iam-role).

#### The role provided to CloudFormation as the execution role
By default, Sceptre doesn't provide an [execution/service role](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-servicerole.html)
to CloudFormation for stacks. This is a permanent action with implications you should be aware of.
CDK _does_ tend to prefer using these, however, and one is created within the standard CDK bootstrap
stack.

If you want Sceptre to provide a service role to the stack, you'll need to specify that role as the
stack's `role_arn`. Thus, you can use the Bootstrapped CloudFormation execution role if you want to
or your organization generally requires that. If you want to do this, it's recommended you add the
execution role as an output on your bootstrap stack and then set `role_arn` using `!stack_output` or
`!stack_output_external`.

For more information on the `role_arn` configuration, see [Sceptre docs on it](https://docs.sceptre-project.org/3.2.0/docs/stack_config.html#role-arn).

#### The roles used to push file and image assets to the Cloud
Some sorts of CDK constructs require the packaging and upload to the cloud of S3-destined file assets
or ECR-destined image assets. These will each be published with different IAM permissions, depending
on how you've configured your CDK handler.

* If using the `"bootstrapless"` `deployment_type` and you have _not_ explicitly specified a
`file_asset_publishing_role_arn` or `image_asset_publishing_role_arn`, CDK will use your configured
Sceptre deployment role (if you have an iam_role specified), your profile (if specified), or your
AWS environment credentials to push those credentials. If this is the case, be sure your credentials
have permissions to perform those Put/Push operations.
* If using the `"bootstrapless"` `deployment_type` and you _have_ explicitly specified a
`file_asset_publishing_role_arn` and/or `image_asset_publishing_role_arn`, CDK will assume those
roles (from your current deployment iam_role, profile, or AWS environment credentials) for their
respective actions in order to perform those Put/Push operations. If this is the case, be sure that
your iam_role, profile, or AWS environment credentials have permission to assume those roles.
* If using the `"bootstrapped"` `deployment_type`, CDK will assume the respective roles from your
bootstrap stack in order to perform those operations. If this is the case, be sure that
your iam_role, profile, or AWS environment credentials have permission to assume those roles.

### Example Sceptre CDK Stack

[sceptre-example](https://github.com/Sceptre/sceptre-cdk-handler/tree/main/sceptre-example)



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/sceptre/sceptre-cdk-handler",
    "name": "sceptre-cdk-handler",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "sceptre,sceptre-template-handler",
    "author": "Sceptre",
    "author_email": "sceptre@sceptre.org",
    "download_url": "https://files.pythonhosted.org/packages/09/eb/b76c60065786984c1d1baec99c3d2312ac3eb5171fd476ba4a0bd492d56a/sceptre-cdk-handler-2.1.0.tar.gz",
    "platform": null,
    "description": "# README\n\n## What is this?\n\n`sceptre-cdk-handler` is a TemplateHandler for Sceptre (versions 2.7 and up) that lets you use a\nPython AWS CDK stack class as a stack's template.\n\nThis template handler will use the AWS CDK to synthesize the CDK stack into a CloudFormation template\nand then run `npx cdk-assets` to publish any required assets to S3/ECR.\n\n**By using the CDK Handler, you are letting CDK synthesize a template, and upload artifacts to S3 and ECR\nand then using Sceptre to actually do the deployment of the template to a stack.**\nIn other words, by using this handler with Sceptre, _you skip ever using `cdk deploy`; It's not needed_.\n\nBy using this handler, you can now use CDK templates with all your favorite Sceptre commands, like\n`launch`, `validate`, `generate`, and `diff` (along with all the rest)!\n\n## Why would you want to use CDK with Sceptre?\n**Aren't those two ways to do the same thing?**\n\nCDK and Sceptre really specialize in two different things, though there's definitely overlap.\n\nCDK's whole philosophy is that developers should be able to write code in a language they know and\nhave that compile into an _artifact_ that defines cloud infrastructure resources. Of course, that\n\"artifact\" is ultimately a CloudFormation template. **CDK's specialty, thus, is really in _programmatic_\ntemplate generation with sane defaults and constructs that simplify infrastructure configuration.** It\nhides a lot of the \"magic\" behind the scenes so developers can simply prescribe what they want. CDK\nalso has deployment mechanisms to deploy that infrastructure, but they aren't really CDK's strength.\n\n90% of everything CDK does is at \"compile-time\", when the templates are being rendered. It has a very\nlimited ability to execute custom code at deployment time, and never really _between_ the deployments\nof custom stacks and resources. Furthermore, its way of wiring together stacks uses CloudFormation\nexported outputs and imports, which are rather rigid and can have a host of unintended consequences,\nespecially when values might change.\n\nIn contrast, Sceptre is a _deployment orchestration_ tool. It excels in deploying entire environments\nof stacks, \"wiring them together\" using powerful (and easily customizable) resolvers, hooks, and\ntemplate handlers. **Sceptre is \"template agnostic\"**, supporting YAML and JSON CloudFormation\ntemplates, even augmented with Jinja2 execution logic. Furthermore, out-of-the-box, Sceptre supports\n_any custom Python code to generate templates_, with the only requirement being that it needs to return\na string.\n\n_So why use CDK and Sceptre together?_ Because CDK provides excellent template generation capabilities\nand Sceptre will gladly use those. Furthermore, Sceptre has the ability to easily wire together an\nentire environment _regardless of how that environment's CloudFormation templates are generated._ Thus,\nSceptre will happily (and fairly intuitively) deploy (and \"wire together\") stacks developed in vanilla\nCloudFormation YAML/JSON, templates augmented with Jinja2, Troposphere-generated templates,\nAWS SAM templates, and CDK constructs. They can be deployed as a coherent environment that\ninteroperates, deployed with insight into the various dependencies between stacks. Furthermore,\nusing Sceptre's powerful hooks, you can execute customized pre-deployment and post-deployment code\nto prepare the way for or clean up after a given stack deployment. This is powerful and not something\nCDK otherwise provides a means to accomplish on its own.\n\n## How to install sceptre-cdk-handler\n\n1) Install the Sceptre CDK handler using `pip install sceptre-cdk-handler`\n2) Install the AWS CDK following the instructions in [AWS CDK Getting Started](https://docs.aws.amazon.com/cdk/v2/guide/getting_started.html)\n3) Install the [CDK-Assets](https://www.npmjs.com/package/cdk-assets) NPM package using `npm install cdk-assets`\n\nIf your project will require building and pushing docker image assets to ECR, you will also need to\ninstall docker and make it accessible on your PATH.\n\n## How to use sceptre-cdk-handler\n\nThe template \"type\" for this handler is `cdk`.\n\n### Python Stack Classes vs. cdk.json\n\nThe template `path` argument can either specify a Python file with a `SceptreCdkStack class` (see\n\"Making your Python stack class\" below) or it can specify a `cdk.json` file. Template synthesis and\nasset handling (both bootstrapped and bootstrapless) are fully supported by both approaches.\n\n#### Python Stack Classes\nIf your CDK infrastructure is developed in Python (one of CDK's supported languages), creation and\nconfiguration of your CDK infrastructure can be done more simply by cutting out a lot of the extra\nCDK machinery and just pointing Sceptre at a Python file via `path` and a specific class on that\nfile via `class_name`. The CDK Handler can have a tighter integration with your Stack Class if done\nthis way, such as being able to provide more complex data structures in your cdk context and being\nable to pass `sceptre_user_data`. You won't need a lot of the other bootstrapped CDK files and\nconfigurations (such as a `cdk.json` file). You could really just have a single python file defining\nyour Stack class!\n\n#### cdk.json\nAlternatively, you can point your template handler's `path` to a `cdk.json` file. This will let you\nutilize CDK infrastructure developed in _any supported CDK language_, not just Python. Thus, if you\nhave used `cdk` to initialize a project and your `cdk.json` is valid, directing your template handler\nto that `cdk.json` will allow the CDK Template Handler to fully utilize your CDK project to generate\nthe appropriate stack template(s).\n\n**Important caveats of using cdk.json:**\n1. It is assumed that the root directory for running CDK commands is whatever directory your cdk.json\nis in.\n2. You will be responsible for making sure that your PATH and environment is able to utilize whatever\nlanguage/tooling that your CDK project is configured for (i.e. TypeScript, Go, Java, C#, etc...).\nThe CDK Template Handler will be invoking CDK via a subprocess using the same PATH as it is invoked\nwith. Furthermore, any additional packages used by your CDK project should be installed so they can\nbe utilized. This might require some commands for environment setup being invoked before running\nany Sceptre commands.\n3. Complex data structures (i.e. lists and dicts) are not supported in your CDK context from Sceptre.\nYou can explicitly set those up on your cdk.json (if they're required), but the CDK template handler\nwill only accept simple key/value pairs for your context that it passes.\n4. `sceptre_user_data` is not supported for supplying values to the template handler. Utilize the\nCDK context if you need to pass values from Sceptre.\n5. You must pass the `stack_logical_id` parameter to the handler to identify the specific Stack's\nlogical id that you are wanting to synthesize via CDK.\n6. The Bootstrapless Synthesizer _is_ supported and `bootstrapless_config` parameters will be\nconverted to their associated environment variables and supplied to the CDK process. **However**,\nyou will need to explicitly configure your Stack class with the Bootstrapless Synthesizer as\ndocumented in the [Bootstrapless Synthesizer Readme](https://github.com/aws-samples/cdk-bootstrapless-synthesizer/blob/main/README.md)\nin order for those parameters to actually be utilized. Furthermore, the Bootstrapless Synthesizer\nwill need to be published in your project's language and installed so it can be accessed. At the\ntime this is being written, it only appears as if Python, JavaScript, and TypeScript are supported\nby the Bootstrapless Synthesizer.\n\n### Deployment Types\nThe CDK Handler supports two different deployment types, which function somewhat differently. These\nare \"bootstrapped\" and \"bootstrapless\", both passed to the `deployment_type` template handler argument.\n\n#### The \"bootstrapped\" deployment_type\nThe \"bootstrapped\" deployment type is a more typical CDK-like way to deploy infrastructure and\nconforms more to the standard ways _CDK_ operates. If your organization has a lot of CDK infrastructure,\nusing this deployment_type likely will allow Sceptre to interoperate with existing patterns and\npolicies.\n\nThe `\"bootstrapped\"` deployment_type causes Sceptre assets (namely S3-destined files and\nECR-destined images) to be deployed using the usual CDK-bootstrapped machinery. Specifically, by\nreferencing a \"qualifier\", CDK looks for a corresponding stack in the AWS account that contains the\nspecific S3 bucket and ECR repo, as well as IAM roles to be assumed in order to build and push those\nassets up to the cloud.\n\nIn order to use the \"bootstrapped\" deployment type to push assets to the cloud, a CDK bootstrap stack\nwith matching qualifier must already be deployed. It may be deployed via CDK (outside of Sceptre) or\nyou can use CDK to generate the bootstrap template for Sceptre to deploy using\n`cdk bootstrap --show-template > cdk-bootstrap.yaml`. It is recommended, if not reusing an existing\nbootstrap stack, to deploy the bootstrap stack using Sceptre, as it will allow you to add outputs to\nthe template and reference those when setting up your CDK-based StackConfigs.\n\nWith that said, a bootstrap stack is not actually necessary if your stack includes no S3 or ECR\nassets to push.\n\n**Important:** See section below on IAM implications and behavior of using this handler and how it\ncorresponds to the roles in the bootstrap stack.\n\n#### The \"bootstrapless\" deployment_type\nWhile the \"bootstrapped\" deployment_type is more similar to CDK's way of operating, it's less typical\nfor Sceptre. Sceptre shines by allowing you to define your infrastructure however you want (in however\nmany stacks you want) and then \"wire them together\" using powerful (and very handy) hooks and\nresolvers (like `!stack_output`). Thus, a more \"Sceptre-like\" way would be to avoid using the CDK\nbootstrap stack and just providing references to the required asset-related infrastructure with\nresolvers like `!stack_output`.\n\nThe \"bootstrapless\" deployment_type uses the [cdk-bootstrapless-synthesizer](https://github.com/aws-samples/cdk-bootstrapless-synthesizer)\nto handle assets without needing a bootstrap stack. Instead, you can provide the relevant asset-related\nconfigurations as needed, pulling values from other stack outputs using resolvers.\n\nIf you don't need to utilize a pre-existing bootstrap stack or don't need or want the overhead of\nhaving a bootstrap stack with all the infrastructure resources created along with that (many of which\nyou might not actually need), the \"bootstrapless\" deployment_type is a simpler approach. However,\nit will require you to supply the needed bucket, ECR repository, and other configurations if you're\ndeploying file or image assets. These will need to be supplied on the `bootstrapless_config` argument.\n\n**Why wouldn't you want to use the CDK Boostrap stack if it provides \"everything you'd need\"?**\nA CDK bootstrap stack has a lot of resources, defined all together in a single stack. It's\nauto-generated via CDK. As such, it has a lot of resources you might not actually need,\ndepending on the sort of resources you have in your stack. For example, if you aren't actually\nbuilding and pushing images to ECR, creating a new ECR repository (which is in every CDK bootstrap\nstack) isn't necessary.\n\nAlso, every CDK bootstrap stack contains 4 different IAM roles used for four different actions\n(cloudformation service role, execution role, file asset pushing, image asset pushing). While it is\npossible to make Sceptre use all four of these roles for all four of these actions, it's not the\nnormal way Sceptre operates (where it uses the same role/profile for the all deployment actions).\nFor more information on this handler and IAM, see [the section on IAM](#IAM-and-authentication).\n\nIf there is an existing bootstrap stack you need Sceptre to integrate\nwith, using `deployment_type: \"bootstrapped\"` will adhere to those norms. But if you don't need to\nintegrate with an existing CDK ecosystem and the rest of your infrastructure is deployed with\nSceptre as well, using `deployment_type: \"bootstrapless\"`  will prove a simpler, more straight-forward\nway to deploy and integrate your CDK-stacks into the rest of your environment.\n\n### Making your Python stack class\n_Note:_ This section doesn't apply if you're referencing a `cdk.json` file for your `path` argument.\n\nIn order to properly support this handler's functionality, your Stack class on your Python file\nshould subclass [`sceptre_cdk_handler.SceptreCdkStack`](https://github.com/Sceptre/sceptre-cdk-handler/blob/main/sceptre_cdk_handler/cdk_builder.py).\nFurthermore, it should have this `__init__` signature and invoke the base class `__init__()` this\nway:\n\n```python\nimport aws_cdk\nfrom sceptre_cdk_handler import SceptreCdkStack\n\n# Subclass SceptreCDKStack\nclass CdkStack(SceptreCdkStack):\n  def __init__(self, scope: aws_cdk.App, id: str, sceptre_user_data: dict, **kwargs):\n    # Be sure you invoke super().__init__() and pass the **kwargs along to it\n    super().__init__(scope, id, sceptre_user_data, **kwargs)\n    # and then you can add your resources...\n```\n\n### Importing from other modules\nYour CDK Stack module _can_ import from other packages/modules in your local directory structure.\nThis is useful to break your constructs up with a file-based organization. While you could\ntheoretically point the CDK handler to any python file path on your computer, there are limitations\non how other modules will be accessible for import:\n\n1. All modules/packages to be imported **must be somewhere inside your current working directory.**\nIf the files you intend to import are _outside_ your CWD, they will not be accessible.\n2. They must _either_...\n   1. Be in the immediate directory structure between your CWD and the python file your\nhandler is referencing via `path` _or_\n   2. Be inside importable python packages that _are_ in the immediate structure between your CWD and\nyour handler's `path`.\n\n```\nother_directory/\n    file.py                         # You CANNOT import this because it is out of your CWD\nproject_directory/\n   templates/                       # No __init__.py in here, but it's in the directory hierarchy of\n                                    # your_cdk_stack.py, so you can technically import any direct\n                                    # children of this directory.\n\n       random_python_file.py        # You CAN import this (\"import random_python_file\")\n       unrelated_directory/         # No __init__.py in here...\n           nested_dir/              # No __init__.py in here...\n               some_python_file.py  # You CANNOT import this because this isn't in a python package\n       my_cdk_files/\n           __init__.py              # this lets you import from this dir (my_cdk_files/)\n           constructs/\n               __init__.py          # This lets you import from this dir (constructs/)\n               ec2/\n                   __init__.py      # This lets you import from this dir (ec2/)\n                   vpc.py           # You CAN import this (my_cdk_files.constructs.ec2.vpc)\n                   autoscaling.py   # You CAN import this (my_cdk_files.constructs.ec2.autoscaling)\n           stacks/\n               __init__.py          # This lets you import from this dir (my_cdk_files/)\n               >> your_cdk_stack.py # This is where your CDK Handler points to\n   scripts/\n      some_dir/\n          random_python_file.py     # You cannot import this because it's not in the directory\n                                    # hierarchy of your_cdk_stack.py and it's not in a python package\n                                    # importable from any of the directories that ARE in that hierarchy.\n   app/\n       __init__.py                  # This makes app/ an importable python package\n       my_application_resources.py  # You CAN import this (app.my_application_resources)\n```\n\n\n### Creating your StackConfig\nHere is a simple example of how to configure the template handler. For a more complete Sceptre\nProject configuration, with examples of both `bootstrapped` and `bootstrapless` configurations,\nsee [the example directory in this repo](sceptre-example/).\n\n```yaml\ntemplate:\n    # To use the CDK handler, you should use the \"cdk\" template type\n    type: cdk\n    # The path is (by default) within your project's templates/ directory. However, you can also\n    # make it relative to your templates directory, like \"../my_cdk_app/cdk.json\".\n    path: lambda_stack.py\n    deployment_type: bootstrapless\n    # bootstrapless_config are the snake_cased arguments passed to the cdk-bootstrapless-synthesizer\n    # for definitions of possible parameters, see the API docs here:\n    # https://github.com/aws-samples/cdk-bootstrapless-synthesizer/blob/main/API.md\n    bootstrapless_config:\n        # You can use !stack_attr to reference other stack attributes that happen\n        # to be set with resolvers to chain the resolver value. It makes sense to use the\n        # same bucket as Sceptre uses for its template uploads for your file assets.\n        file_asset_bucket_name: !stack_attr template_bucket_name\n        # It can be useful to apply the same prefix as your template_key_prefix to ensure your\n        # assets are namespaced similarly to the rest of Sceptre's uploaded artifacts.\n        file_asset_prefix: {{template_key_prefix}}/cdk-assets\n        # You can use !stack_output (and other resolvers) in all of these configurations, which is\n        # especially helpful when \"wiring together\" this stack with other stacks deployed in your\n        # environment.\n        image_asset_repository_name: !stack_output ecr.yaml::RepoName\n    # You can explicitly define your stack name, or use the default class name \"CdkStack\"\n    class_name: MyLambdaStack\n\n# Parameters are DEPLOY-TIME values passed to the CloudFormation template. Your CDK stack construct\n# needs to have CfnParameters in order to support this, though.\nparameters:\n    SpecialEnv: \"This is my Sceptre test\"\n\n# sceptre_user_data is passed to your Stack Class's constructor for supplying values at COMPILE-TIME.\nsceptre_user_data:\n    special_variable: \"use this directly at compile_time\"\n```\n\n### Arguments:\n\n* `path` (string, required): The path to the CDK template file, relative to the `templates/` directory of\n  your project. This should be a python file with your stack class, subclassing `SceptreCdkStack`.\n* `deployment_type` (string, required): This determines the way CDK assets should be pushed to the\n  cloud. Options are `\"bootstrapless\"` and `\"bootstrapped\"`. See section above on \"How to use\" for\n  more details.\n* `bootstrap_qualifier` (string, optional): This is only used if you are using the `bootstrapped`\n  deployment type. This qualifier refers to the qualifier on a given CDK bootstrap stack in your\n  AWS account, whether deployed via CDK externally or within the same Sceptre project. If you use\n  the `bootstrapped` deployment_type and do NOT specify a qualifier, CDK will default to the default\n  qualifier and look to use that in your account.\n* `class_name` (string, optional): The name of the class on your CDK template to synthesize.\n  Defaults to `CdkStack`. This is only used if your `path` points to a Python file.\n* `context` (dict, optional): The context for the CDK Stack. See [CDK Context](https://docs.aws.amazon.com/cdk/v2/guide/context.html)\nfor further info on this. This only supports lists and dicts as values if your `path` points to a\nPython file.\n* `stack_logical_id` (string, conditional): The name of the logical ID of the stack this handler\nreferences. This is only used (but required) if your `path` points to a `cdk.json` file.\n* `bootstrapless_config` (dict, optional): This is only used if you are using the `bootstrapless`\ndeployment type. The keys here are the snake-casings of the documented parameters using the\n[cdk-bootstrapless-synthesizer](https://github.com/aws-samples/cdk-bootstrapless-synthesizer/blob/main/API.md):\n    - \"file_asset_bucket_name\" (required if your stack has file assets)\n    - \"file_asset_prefix\"\n    - \"file_asset_publishing_role_arn\"\n    - \"file_asset_region_set\"\n    - \"image_asset_account_id\"\n    - \"image_asset_publishing_role_arn\"\n    - \"image_asset_region_set\"\n    - \"image_asset_repository_name\" (required if your stack has image assets)\n    - \"image_asset_tag_prefix\"\n    - \"template_bucket_name\"\n\n### Passing Data to a CDK Stack\n\nThere are three methods for passing data to a CDK Stack; using `sceptre_user_data`, CDK Context or CloudFormation parameters:\n\n#### Sceptre User Data\n\nData can be passed to a CDK stack using the `sceptre_user_data` block of the Sceptre stack config.\nThis will be resolved when the template is synthesized and can contain complex objects. Since\n`sceptre_user_data` is a resolvable property, you can use resolvers to pass values from other\ndeployed stacks and other sources as well.`\n\n**Note**: `sceptre_user_data` is not supported if your `path` points to a `cdk.json` file.\n\n#### CDK Context\n\nData can be passed to a CDK application (and accessed in your stack) via the `context` template\nhandler argument. Since Template handler arguments are resolvable, you can also use resolvers here.\n\n**Note**: Complex context values (in lists and dicts) are only supported for Python stacks. If your\n`path` points to a `cdk.json` file, only string values are supported.\n\n#### CloudFormation Parameters\n\nData can be passed to a synthesized CDK template using standard CloudFormation parameters.\nThese are resolved when the CloudFormation stack is created from the template, but can only contain\nstring or list values as supported by Cloudformation. In order to use these, you need to create\n[`CfnParameter`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.CfnParameter.html) resources\nin your stack class.\n\n### Stack Outputs\n\nCloudFormation stack outputs can be defined in the CDK stack and then referenced from other Sceptre\nstacks using the standard Sceptre `!stack_output` resolver. In order to do this, your Stack Class\nwill need to create [`CfnOutput`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.CfnOutput.html)\nresources in your stack class.\n\n### CDK Feature Flags and Custom Bootstrap\n\nTo set any [CDK Feature Flags](https://docs.aws.amazon.com/cdk/v2/guide/featureflags.html), set these\nin the handler's `context` argument. See [lambda-stack-bootstrapped.yaml](sceptre-example/config/lambda-stack-bootstrapped.yaml)\nfor an example of this.\n\nReminder: the `context` argument is a standard Sceptre resolvable property, so resolvers and/or Jinja\nvariables can be used for values.\n\n### How exactly does this handler work?\n\nWhen using _only_ the CDK CLI (not Sceptre) to deploy using `cdk deploy`, the CDK CLI effectively performs\nthe following steps:\n\n1. Synthesises any constructs defined within the CDK Class into a CloudFormation Template and a\nbundle of required assets.\n2. Publishes the assets to a CDK bootstrapped S3 bucket and/or ECR registry.\n3. Creates/updates a CloudFormation stack from the synthesized template.\n\nWhen you use Sceptre with this handler, the CDK handler performs steps 1-2 above to create a template\nthat Sceptre can use and publish the assets, **but it does not use CDK to deploy it!**. Instead,\nSceptre can use that template produced in step 1 above to perform all its usual commands with all\nit's usual magic!\n\nIn other words, using this handler lets you use resolvers, put your CDK stack into StackGroups, let\nyou name your stack according to Sceptre's naming conventions, `validate`, `diff`, and more! Basically,\nthe CDK stack can be managed using Sceptre just like any other.\n\n### IAM and authentication\n\nThere are several dimensions to how using this handler applies to IAM roles, policies, and permissions.\n\n#### The Role to deploy the CloudFormation Stacks themselves\nSceptre will always use the AWS environment configuration, `profile` and/or `iam_role` to deploy\nthe CloudFormation _Stacks_ themselves. This is consistent with how Sceptre always operates and it's\nno different when using this handler.\n\nIf you want Sceptre to assume the Deployment Role from the CDK bootstrap stack, you'll need to\nspecify that role as the `iam_role` for your stack(s). If you want to do this, it's recommended you\nadd the deployment role as an output on your bootstrap stack and then set `iam_role` using a\n`!stack_output` or `!stack_output_external` resolver. Be aware that your current AWS environment's\ncredentials will need permission to assume this role.\n\nFor more information on the `iam_role` configuration, see [Sceptre docs on it](https://docs.sceptre-project.org/3.2.0/docs/stack_config.html#iam-role).\n\n#### The role provided to CloudFormation as the execution role\nBy default, Sceptre doesn't provide an [execution/service role](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-servicerole.html)\nto CloudFormation for stacks. This is a permanent action with implications you should be aware of.\nCDK _does_ tend to prefer using these, however, and one is created within the standard CDK bootstrap\nstack.\n\nIf you want Sceptre to provide a service role to the stack, you'll need to specify that role as the\nstack's `role_arn`. Thus, you can use the Bootstrapped CloudFormation execution role if you want to\nor your organization generally requires that. If you want to do this, it's recommended you add the\nexecution role as an output on your bootstrap stack and then set `role_arn` using `!stack_output` or\n`!stack_output_external`.\n\nFor more information on the `role_arn` configuration, see [Sceptre docs on it](https://docs.sceptre-project.org/3.2.0/docs/stack_config.html#role-arn).\n\n#### The roles used to push file and image assets to the Cloud\nSome sorts of CDK constructs require the packaging and upload to the cloud of S3-destined file assets\nor ECR-destined image assets. These will each be published with different IAM permissions, depending\non how you've configured your CDK handler.\n\n* If using the `\"bootstrapless\"` `deployment_type` and you have _not_ explicitly specified a\n`file_asset_publishing_role_arn` or `image_asset_publishing_role_arn`, CDK will use your configured\nSceptre deployment role (if you have an iam_role specified), your profile (if specified), or your\nAWS environment credentials to push those credentials. If this is the case, be sure your credentials\nhave permissions to perform those Put/Push operations.\n* If using the `\"bootstrapless\"` `deployment_type` and you _have_ explicitly specified a\n`file_asset_publishing_role_arn` and/or `image_asset_publishing_role_arn`, CDK will assume those\nroles (from your current deployment iam_role, profile, or AWS environment credentials) for their\nrespective actions in order to perform those Put/Push operations. If this is the case, be sure that\nyour iam_role, profile, or AWS environment credentials have permission to assume those roles.\n* If using the `\"bootstrapped\"` `deployment_type`, CDK will assume the respective roles from your\nbootstrap stack in order to perform those operations. If this is the case, be sure that\nyour iam_role, profile, or AWS environment credentials have permission to assume those roles.\n\n### Example Sceptre CDK Stack\n\n[sceptre-example](https://github.com/Sceptre/sceptre-cdk-handler/tree/main/sceptre-example)\n\n\n",
    "bugtrack_url": null,
    "license": "Apache2",
    "summary": "AWS CDK Template Handler",
    "version": "2.1.0",
    "split_keywords": [
        "sceptre",
        "sceptre-template-handler"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eae694c64079b7e0625d5e0e5be1364bc7c73ad189cc0a43f173c78cb1ce1248",
                "md5": "00d74e863f14b21fd2e9da19f0e81b3a",
                "sha256": "645a4b19e9b0343b8bcbf686d7da00965887ecbd498a366adcce58de900332c3"
            },
            "downloads": -1,
            "filename": "sceptre_cdk_handler-2.1.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "00d74e863f14b21fd2e9da19f0e81b3a",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 23932,
            "upload_time": "2023-03-19T14:49:27",
            "upload_time_iso_8601": "2023-03-19T14:49:27.855535Z",
            "url": "https://files.pythonhosted.org/packages/ea/e6/94c64079b7e0625d5e0e5be1364bc7c73ad189cc0a43f173c78cb1ce1248/sceptre_cdk_handler-2.1.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09ebb76c60065786984c1d1baec99c3d2312ac3eb5171fd476ba4a0bd492d56a",
                "md5": "ab4727b9d855047b1dc6688f06b0be53",
                "sha256": "124fd758e0619c5f9f9d0163b8a8198cc5a8cdf65429fae1900e9cd659c823ec"
            },
            "downloads": -1,
            "filename": "sceptre-cdk-handler-2.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ab4727b9d855047b1dc6688f06b0be53",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 31380,
            "upload_time": "2023-03-19T14:49:29",
            "upload_time_iso_8601": "2023-03-19T14:49:29.263367Z",
            "url": "https://files.pythonhosted.org/packages/09/eb/b76c60065786984c1d1baec99c3d2312ac3eb5171fd476ba4a0bd492d56a/sceptre-cdk-handler-2.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-19 14:49:29",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "sceptre",
    "github_project": "sceptre-cdk-handler",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "circle": true,
    "requirements": [],
    "lcname": "sceptre-cdk-handler"
}
        
Elapsed time: 0.04592s