
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@almamedia-open-source/cdk-project-names
Advanced tools
Opinionated AWS CDK utility for explicitly naming resources.

Opinionated AWS CDK utility for explicitly naming resources.
AWS CDK resource naming best practises state that you should not explicitly name resources, but instead let CDK generate resource names to avoid naming collisions and enable replacement operations during deployments.
But, having explicit resource naming with sensible conventions can:
There are many valid arguments why you should aim for totally immutable infrastructure and use generated resource names. But for example, how often you want to change DynamoDB partition key on the fly for production database with existing data? You might also have a lot of resources that others (even in different AWS accounts) rely on and hence the name (or ARN) of those resources must not change suddenly! In the end, how you name (or don't name) your resources is up to you to decide; If you decide to explicitly name (all or some) resources, this utility might be for you!
đźš§ This tool is work-in-progress and experimental!
All @almamedia-open-source/cdk- prefixed constructs/utilities are based on existing CDK constructs/utilities we've developed & used (in production) internally at Alma Media since 2019.
Breaking changes may occur at any given time without prior warning before first v1 major is released, as we rewrite them for CDK v2 and use this opportunity to also redesign & refactor.
Feedback is most welcome, but do note that we intend to implement these new constructs/utilities and their APIs in such manner that our existing CDK v1 production workloads can easily migrate into these new @almamedia-open-source/cdk- constructs/utilities.
Ensure you meet following requirements:
v14.17.6 or newerv2.0.0 or newerInstall peer dependency @almamedia-open-source/cdk-project-context:
npm i -D @almamedia-open-source/cdk-project-context
Install this tool:
npm i -D @almamedia-open-source/cdk-project-names
Initialize your CDK App with Project construct as documented in @almamedia-open-source/cdk-project-context:
import { Project } from '@almamedia-open-source/cdk-project-context';
// new Project instead of new App
const project = new Project({
name: 'my-cool-project',
author: {
organization: 'Acme Corp',
name: 'Mad Scientists',
email: 'mad.scientists@acme.example.com',
},
defaultRegion: 'eu-west-1', // defaults to one of: $CDK_DEFAULT_REGION, $AWS_REGION or us-east-1
accounts: {
dev: {
id: '111111111111',
config: {
baseDomain: 'example.net',
},
},
prod: {
id: '222222222222',
config: {
baseDomain: 'example.com',
},
},
},
})
Define your resource names:
import { Name, UrlName, PathName } from '@almamedia-open-source/cdk-project-names';
// somewhere inside your CDK stack:
new dynamodb.Table(this, 'Table', {
queueName: Name.it(this, 'MyTable'),
});
new events.EventBus(this, 'EventBus', {
topicName: Name.withProject(this, 'MyEventBus'),
});
new s3.Bucket(this, 'Bucket', {
bucketName: UrlName.globally(this, 'MyBucket'),
});
new ssm.StringParameter(this, 'Parameter', {
parameterName: PathName.withProject(this, 'MyNamespace/MyParameter'),
stringValue: 'Foo',
tier: ssm.ParameterTier.ADVANCED,
});
Run CDK commands with (optional) environment-type (or shorthand: environment or env) CLI context flag, for example:
npx cdk deploy --context environment=feature/foo-bar
The resources will be named as following:
| Resource | Resource Name |
|---|---|
| Table | FeatureFooBarMyTable |
| EventBus | MyCoolProjectFeatureFooBarMyEventBus |
| Bucket | acme-corp-my-cool-project-feature-foo-bar-my-bucket |
| Parameter | /MyCoolProject/FeatureFooBar/MyNamespace/MyParameter |
| Class name | Style | Purpose | Example output |
|---|---|---|---|
Name | PascalCase | Default style for naming resources | MyResource |
UrlName | param-case | URL/DNS compatible values (e.g. S3 bucketName) | my-resource |
PathName | PascalCaseseparated by / (slash) | Slash separated values (e.g. SSM parameterName with hierarchies) | /MyNamespace/MyParameter |
There are three different “specificity levels” of naming you may choose via available methods:
| Method name | Purpose | Example with application environment info |
|---|---|---|
it | Only base name with environment type if that is available | StagingMyResource |
withProject | Same as above, but prefix with project name (recommended default) | MyCoolProjectStagingMyResource |
globally | Same as above, but prefix with your organization name as well | AcmeCorpMyCoolProjectStagingMyResource |
Since withProject is often the most sensible default, this tool exposes the following shorthand functions for brevity:
name – same as Name.withProjecturlName – same as UrlName.withProjectpathName – same as PathName.withProjectNote the lowercase first letter.
import { name, urlName, pathName } from '@almamedia-open-source/cdk-project-names';
name(scope, 'MyResource');
urlName(scope, 'MyResource');
pathName(scope, 'MyResource');
Depending on the configuration, CDK context and method that is being used, this utility will prefix the names with some or all following values:
| Order | Value | Controlled by |
|---|---|---|
| 1 | Organization | Used method: globally only |
| 2 | Project Name | Used method: globally or withProject |
| 3 | Application Environment | If provided via --context environment |
| 4 | Base Name | Required string value given by user |
| Style | Default | Application environment info present |
|---|---|---|
PascalCase default | [Organization][ProjectName]Basename | [Organization][ProjectName]EnvironmentBasename |
param-case URL/DNS compatible | [organization-][project-name-]basename | [organization-][project-name-]environment-basename |
PascalCase separated by / | /[Organization/][ProjectName/]Basename | /[Organization/][ProjectName/]Environment/Basename |
Values in square brackets [] are optional and they are printed depending on which specificity level is used.
This tool does not validate for allowed characters, as they vary from service to service. Mostly you should stick to basic alphanumeric characters (a-z and 0-9), with the exception of PathName class and it's methods where you may use slash / character to describe SSM Parameter name hierarchies.
Most AWS resources have resource name length limiation of around 63 characters but as always, there are exceptions such as:
functionNameclusterNametargetGroupNameThe various limitations can be found via service specific API docs or somewhat nicely aggregated for most popular services in this StackOverflow answer.
If you have lenghty values in organization name, project name, environment type and/or base name you may run into problems. Due to that reason by default this utility will create an error if your resource name exceeds 63 characters.
The exception is PathName as it is mostly used with AWS Systems Manager Parameter Store Paremeters, which have the ARN length limit of 1011: Therefore with PathName we have decided to set the default character limit to 900. You can always configure that with maxLength: number property.
If the resource accepts longer resource names (like AWS Lambda accepts 140 characters for functionName), you may specify a custom max length as a prop:
Name.globally(this, 'MyFunction', { maxLength: 140 });
Select the naming method carefully:
If your AWS account only has single project in it, you should default to using it which results into shortest possible resource name, for example StagingMyResource. But also consider future-proofing: Will there be other projects in that AWS account in the future?
If your AWS account has multiple projects (e.g. microservices) in it, you should default to using withProject, which results into values such as MyCoolProjectStagingMyResource.
Only use globally method which prints the longest form (for example AcmeCorpMyCoolProjectStagingMyResource) for things such as S3 bucket names.
You shouldn't really have the need to separate different organizations internally within a single AWS account. Having multiple organizations (business units or development teams etc) deploying workloads into the same AWS account suggests your AWS account organization setup is not necessarily following best practises.
If the name is not important to you: Don't specify the name at all and let CDK handle it!
Consider shorter base name.
You should consider of course if you can somehow logically abbreviate/shorten your organization name for example. Be careful with this, as it will affect resources (i.e. perform replacement) that are already deployed!
Consider trimming.
Roll your own naming for that specific resource. You may want to utilize some of the methods provided by @almamedia-open-source/cdk-project-context.
Set the maximum length and enable trimming:
Name.withProject(this, 'MyApplicationTargetGroup', {
maxLength: 32,
trim: true,
});
If the output value of Name.withProject is within the maxLength (32) character limit, then it returns immediately. If not (as in the above example), the following happens:
E43A285509B095FCE0E474A4E9DF0A1D1D41F09D91F70D6F4873688BC07E6C2BE43Name.withProject to first 29 characters:
MyCoolProjectStagingMyApplicaMyCoolProjectStagingMyApplicaE43Note that trimming happens for the whole output value of Name.withProject, which means your organization, project name and environment type prefixes might be affected as well (depending on their length).
FAQs
Opinionated AWS CDK utility for explicitly naming resources.
We found that @almamedia-open-source/cdk-project-names demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.