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-S3
- DynamoDB Table with pay per request, continuous backups using point-in-time recovery, encrypted by AWS owned key
- IAM Policy with read/write access to the created S3 Bucket and DynamoDB Table
See API.md
Install
TypeScript
npm install @pepperize/cdk-terraform-state-backend
or
yarn add @pepperize/cdk-terraform-state-backend
Python
pip install pepperize.cdk-terraform-state-backend
C# / .Net
dotnet add package Pepperize.CDK.TerraformStateBackend
Java
<dependency>
<groupId>com.pepperize</groupId>
<artifactId>cdk-terraform-state-backend</artifactId>
<version>${cdkTerraformStateBackend.version}</version>
</dependency>
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.1.597.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 656a287dc6ed600d2d039d98bfacf55ee8b80d3251d1b66b50a488cba19fb77a |
|
MD5 | b5b7e04a45d1c1a83cbf190af4481b72 |
|
BLAKE2b-256 | ea8829b5244e67cdfe42b184356d2db3f542f08ee93154c264aae37077e200a9 |
Close
Hashes for pepperize.cdk_terraform_state_backend-0.1.597-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d83eb42c158def856e0a22ecad9f36f3ffc80d322198fda8ca6de53b2965cdb |
|
MD5 | 8f804f0d4545148d64e971478a88bb51 |
|
BLAKE2b-256 | 16d8c1b20c09d1ae37fe8e5052be13c102d4849e96cacf48cb8d72fd83705339 |