A stack that destroys itself after a given time (ttl)
Project description
@cloudcomponents/cdk-temp-stack
A stack that destroys itself after a given time (ttl)
Install
TypeScript/JavaScript:
npm i @cloudcomponents/cdk-temp-stack
Python:
pip install cloudcomponents.cdk-temp-stack
How to use
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
~/usr/bin / envnode
from source_map_support.register import
from aws_cdk.core import App, Duration
from ..temp_infra_stack import TempInfraStack
app = App()
TempInfraStack(app, "TempInfraStack",
env=Environment(
region=process.env.DEFAULT_REGION,
account=process.env.CDK_DEFAULT_ACCOUNT
),
ttl=Duration.minutes(10)
)
# temp-infra-stack.ts
from aws_cdk.core import Construct
from aws_cdk.aws_ec2 import Vpc
from cloudcomponents.cdk_temp_stack import TempStack, TempStackProps
class TempInfraStack(TempStack):
def __init__(self, scope, id, *, ttl, description=None, env=None, stackName=None, tags=None, synthesizer=None, terminationProtection=None):
super().__init__(scope, id, ttl=ttl, description=description, env=env, stackName=stackName, tags=tags, synthesizer=synthesizer, terminationProtection=terminationProtection)
Vpc(self, "VPC")
TimeToLive Construct
Alternatively, you can also add the TimeToLive construct to your stack
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
# your stack
from aws_cdk.core import Construct, Stack, StackProps, Duration
from cloudcomponents.cdk_temp_stack import TimeToLive
class YourStack(Stack):
def __init__(self, scope, id, *, description=None, env=None, stackName=None, tags=None, synthesizer=None, terminationProtection=None):
super().__init__(scope, id, description=description, env=env, stackName=stackName, tags=tags, synthesizer=synthesizer, terminationProtection=terminationProtection)
TimeToLive(self, "TimeToLive",
ttl=Duration.minutes(10)
)
API Reference
See API.md.
Example
See more complete examples.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cloudcomponents.cdk-temp-stack-1.0.0.tar.gz.
File metadata
- Download URL: cloudcomponents.cdk-temp-stack-1.0.0.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcf3f88c8aafb2f5bb06c75e09c03cc6f511b4971cdd76d835f0fdb2579e9643
|
|
| MD5 |
2b4357d3c65d7f709b5239050ac9867c
|
|
| BLAKE2b-256 |
a9d5ad061acd5d5e7ab123a35cfc042d8ba7112df3bc1592ab16b75875e3f135
|
File details
Details for the file cloudcomponents.cdk_temp_stack-1.0.0-py3-none-any.whl.
File metadata
- Download URL: cloudcomponents.cdk_temp_stack-1.0.0-py3-none-any.whl
- Upload date:
- Size: 18.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8012cc3ff6d1cc6c7be23832322d41eb051ccd1a0ca95f39faaa24d1e9ca23f2
|
|
| MD5 |
accb340742a484d4a765a8dab3de78c7
|
|
| BLAKE2b-256 |
d8fc6d3e92c35791018b5c880c684c0530bbb7ae9dbbfa080869a320a7bc396b
|