This project provides a CDK construct bootstrapping an AWS account with a S3 Bucket and a DynamoDB table as terraform state backend.
Project description
AWS CDK Terraform state backend
This project provides a CDK construct bootstrapping an AWS account with a S3 Bucket and a DynamoDB table as Terraform state backend.
Terraform doesn't come shipped with a cli command bootstrapping the account for State Storage and Locking
like AWS CDK provides with cdk bootstrap
.
While bootstrapping the AWS Organization and Accounts this construct may be used to create:
- S3 Bucket with blocked public access, versioned, encrypted by SSE-KMS
- DynamoDB Table with pay per request, continuous backups using point-in-time recovery, encrypted by AWS owned key
Example
# Example automatically generated from non-compiling source. May contain errors.
import { App, Stack } from "@aws-cdk/core";
import { TerraformStateBackend } from "@pepperize/cdk-terraform-state-backend";
const app = new App();
const stack = new Stack(app, "stack", {
env: {
account: "123456789012",
region: "us-east-1",
},
});
// When
new TerraformStateBackend(stack, "TerraformStateBackend", {
bucketName: "terraform-state-backend",
tableName: "terraform-state-backend",
});
terraform {
backend "s3" {
bucket = "terraform-state-backend-123456789012-us-east-1"
dynamodb_table = "terraform-state-backend-123456789012"
key = "path/to/my/key"
region = "us-east-1"
}
}
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
Close
Hashes for pepperize.cdk-terraform-state-backend-0.0.31.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5df4a5013f21585d45a13a3a554c75e5d2517104b53c2bcba6d6594dad378264 |
|
MD5 | 3faa9bcf43b48f5877ee34242fdb8e75 |
|
BLAKE2b-256 | 23631b292ca360fed819b0db0f06ef4ac183c42bb91ca6eec4e8f1e07cb2be76 |
Close
Hashes for pepperize.cdk_terraform_state_backend-0.0.31-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4d53f419a542b437c69fdd46a2993aa399589178a9c45d6992e95010de0373c |
|
MD5 | 7e05b56adce249f82c9a1b7de7dc1bde |
|
BLAKE2b-256 | f4a05fd4ddb4b59e0624dc0dafee9ff54f1ec6c510c5f80e22caee68076b15ab |