AWS CDK construct for automated cross-account ACM certificate validation using DNS
Project description
ACM Auto-Validate Construct
Overview
The ACM Auto-Validate Construct is designed to automate the validation of AWS Certificate Manager (ACM) certificates using DNS validation, especially useful in continuous deployment pipelines. It handles the complexity of validating certificates in a hosted zone that resides in a different AWS account. This automation ensures that certificates requested during infrastructure deployment are validated promptly, allowing CloudFormation templates to proceed without waiting for manual intervention.
Use Case
This construct was initially created to support CDK-based deployment pipelines where certificates requested remained pending validation. By automating this step, it significantly reduces the deployment time and manual overhead, especially in cross-account DNS validation scenarios.
Features
- Automated DNS Validation: Automates the creation and deletion of DNS records for ACM certificate validation.
- Cross-Account Support: Capable of handling DNS records in a hosted zone that is in a different AWS account.
- Event-Driven: Utilizes AWS Lambda and Amazon EventBridge to respond to certificate request events.
- SSM Parameter Tracking: Tracks the certificates processed using AWS Systems Manager Parameter Store. Note that SSM parameters are created in the
us-east-1region, but certificates can be issued in any region.
Prerequisites
- Two AWS accounts: a source account where the ACM certificates are requested and a zone account where the hosted zone resides.
- IAM permissions to create necessary resources in both accounts.
- AWS CDK v2 installed.
Installation
To use this construct, install it from npm:
npm install acm-auto-validate
Usage
Here's an example of how to use these constructs in your CDK application:
TypeScript
import { ACMValidationConstruct, DnsValidationRoleConstruct } from 'acm-auto-validate';
import { App, Stack } from 'aws-cdk-lib';
const app = new App();
// Create a stack in the account where certificates will be requested
const sourceStack = new Stack(app, 'SourceStack', {
env: { account: '111111111111' } // source account ID
});
// Deploy the ACM validation construct in the source account stack
new ACMValidationConstruct(sourceStack, 'ACMValidationConstruct', {
rolePrefix: 'prod', // must match prefix used in DnsValidationRoleConstruct
zoneAccountId: '222222222222',
zoneName: 'example.com',
});
// Create a stack in the account where the zone is hosted
const zoneStack = new Stack(app, 'ZoneStack', {
env: { account: '222222222222' } // zone account ID
});
// Deploy the DNS validation role construct in the zone account stack
new DnsValidationRoleConstruct(zoneStack, 'DnsValidationRoleConstruct', {
rolePrefix: 'prod', // must match prefix used in ACMValidationConstruct
sourceAcctId: '111111111111',
zoneAcctId: '222222222222',
});
Python
from aws_cdk import App, Stack
from acm_auto_validate import (
ACMValidationConstruct,
DnsValidationRoleConstruct
)
app = App()
# Create a stack in the account where certificates will be requested
source_stack = Stack(app, 'SourceStack', env={'account': '111111111111'})
# Deploy the ACM validation construct in the source account stack
ACMValidationConstruct(
source_stack,
'ACMValidationConstruct',
role_prefix='prod', # must match prefix used in DnsValidationRoleConstruct
zone_account_id='222222222222',
zone_name='example.com'
)
# Create a stack in the account where the zone is hosted
zone_stack = Stack(app, 'ZoneStack', env={'account': '222222222222'})
# Deploy the DNS validation role construct in the zone account stack
DnsValidationRoleConstruct(
zone_stack,
'DnsValidationRoleConstruct',
role_prefix='prod', # must match prefix used in ACMValidationConstruct
source_acct_id='111111111111',
zone_acct_id='222222222222'
)
app.synth()
Configuration
ACMValidationConstruct: Deploys the Lambda function (written in Python) and EventBridge rule in the source account. Requires a rolePrefix (such as 'dev' or 'prod'; this is used for naming resources), the zone account ID and the zone name.DnsValidationRoleConstruct: Deploys the IAM role in the zone account, which the Lambda function assumes. Requires a rolePrefix (such as 'dev' or 'prod'; this is used for naming resources), the source account ID, and the zone account ID.
Contributing
Contributions to this project are welcome. Please follow the standard procedures for submitting issues or pull requests.
License
This project is distributed under the Apache License 2.0.
Project details
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 acm-auto-validate-0.0.4.tar.gz.
File metadata
- Download URL: acm-auto-validate-0.0.4.tar.gz
- Upload date:
- Size: 37.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
155b0cb48495c85f26e86a94bbf45a2be5d1cb2b817dd87e725e698d3196340d
|
|
| MD5 |
c96eef63450583293346f53a06e24705
|
|
| BLAKE2b-256 |
98539806d6d9217d0ca067ff4f08918c04d8a8c3cd4bfea05f0c1584ec4c876a
|
File details
Details for the file acm_auto_validate-0.0.4-py3-none-any.whl.
File metadata
- Download URL: acm_auto_validate-0.0.4-py3-none-any.whl
- Upload date:
- Size: 35.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43f92ca005c67b1568b9a0775dce2e823cccf2f9f213897ce84634e43fb44f94
|
|
| MD5 |
835da47b6fc44edf0d0a97adb8a6204f
|
|
| BLAKE2b-256 |
b7cda587e7d998bcdbafde363d23adb910c1963b8b2db4d3eaccf8dd813f8c48
|