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
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.33.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a1fdc536c32c3562fe86a366117eacbb8c6d84d3a5a60e01d7c62002bc1043d |
|
MD5 | 50e1afe1ca93b3fa80b854749bf4d08f |
|
BLAKE2b-256 | 8bae2360421fc61321f51a5c31d83831d9361880bbbb601346794be25330ef53 |
Close
Hashes for pepperize.cdk_terraform_state_backend-0.0.33-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e09caf31e9b6dd0113323e0b1dfff4b658fde22da8bc71189442c89b5bb5b82 |
|
MD5 | 0a253e43a1e0cfc38ca96eb4b91b550f |
|
BLAKE2b-256 | b51efa6ba9abf5f88f93fef15872b4968fc03532644047cf385833dc562652f4 |