Skip to main content

CDK Aspect to tag resources with git metadata. This provides a nice connection between the construct and the git repository.

Project description

CDK Aspect Git Tagger

This is a CDK Aspect that will tag your CDK Stacks with the current git repo location for easier identification of deployed stacks. Will create a .git-url-tagger.json file in the root of your project to store the git url. This file will be used to determine the git url for the stack.

How to install

npm install @jjrawlins/cdk-git-tagger

or

yarn add @jjrawlins/cdk-git-tagger

How to use

import { GitUrlTagger } from '@jjrawlins/cdk-git-tagger';
import { App, Aspects, Stack, StackProps } from 'aws-cdk-lib';
import { Topic } from 'aws-cdk-lib/aws-sns';
import { Construct } from 'constructs';

export class MyStack extends Stack {
    constructor(scope: Construct, id: string, props: StackProps = {}) {
        super(scope, id, props);
        // define resources here...
        new Topic(this, 'MyTopic');
    }
}

const app = new App();

new MyStack(app, 'cdk-aspect-git-tagger-tester');
Aspects.of(app).add(new GitUrlTagger());
app.synth();

Example Output

{
  "Resources": {
    "MyTopic86869434": {
      "Type": "AWS::SNS::Topic",
      "Properties": {
        "Tags": [
          {
            "Key": "GitUrl",
            "Value": "https://github.com/jjrawlins/cdk-cool-construct.git"
          }
        ]
      }
    }
  }
}

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

jjrawlins_cdk_git_tagger-0.0.97.tar.gz (33.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jjrawlins_cdk_git_tagger-0.0.97-py3-none-any.whl (32.4 kB view details)

Uploaded Python 3

File details

Details for the file jjrawlins_cdk_git_tagger-0.0.97.tar.gz.

File metadata

File hashes

Hashes for jjrawlins_cdk_git_tagger-0.0.97.tar.gz
Algorithm Hash digest
SHA256 e33a7542890859246849eb4925d7010505139309b5fb1d4e98059122eb0bd321
MD5 53047bdd848256925c29d19fd470f9d9
BLAKE2b-256 67421ea0df612ce240d72260006458480880f43f6b22ade9239a6907d459ce67

See more details on using hashes here.

File details

Details for the file jjrawlins_cdk_git_tagger-0.0.97-py3-none-any.whl.

File metadata

File hashes

Hashes for jjrawlins_cdk_git_tagger-0.0.97-py3-none-any.whl
Algorithm Hash digest
SHA256 18a9b3df3249d69c49631cbe679abc99846a42e563ad14c32b3d65240c2b40b5
MD5 1165990e9091af543cb8629348dd2b6e
BLAKE2b-256 90165055d8bae037eb20a9a354b655744d0de1cc25a84f31988dfa0cd1969839

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page