Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@pepperize/cdk-eks

Package Overview
Dependencies
Maintainers
2
Versions
725
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pepperize/cdk-eks

[![GitHub](https://img.shields.io/github/license/pepperize/cdk-eks?style=flat-square)](https://github.com/pepperize/cdk-eks/blob/main/LICENSE) [![npm (scoped)](https://img.shields.io/npm/v/@pepperize/cdk-eks?style=flat-square)](https://www.npmjs.com/packa

  • 0.1.696
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

GitHub npm (scoped) GitHub Workflow Status (branch) GitHub release (latest SemVer) Gitpod ready-to-code

AWS CDK EKS

Install

TypeScript

npm install @pepperize/cdk-eks

or

yarn add @pepperize/cdk-eks

Getting started

  1. Create a new CDK TypeScript App project with projen

    mkdir my-project
    cd my-project
    git init -b main
    npx projen new awscdk-app-ts
    
  2. Add @pepperize/cdk-eks to your dependencies in .projenrc.js

    const project = new awscdk.AwsCdkTypeScriptApp({
      //...
      deps: ["@pepperize/cdk-eks"],
    });
    
  3. Install the dependency

    yarn
    npx projen
    
  4. Create a new app in src/main.ts

    import { App, Stack } from "aws-cdk-lib";
    import * as ec2 from "aws-cdk-lib/aws-ec2";
    import { Cluster } from "@pepperize/cdk-eks";
    
    const app = new App();
    const stack = new Stack(app);
    
    const vpc = new ec2.Vpc(stack, "Vpc", {});
    
    new Cluster(stack, "Cluster", {
      vpc: vpc,
      hostedZoneIds: ["Z1D633PJN98FT9"],
      mainRoles: [],
    });
    

Contributing

Contributions of all kinds are welcome :rocket: Check out our contributor's guide.

For a quick start, check out a development environment:

git clone git@github.com:pepperize/cdk-eks
cd cdk-eks
# install dependencies
yarn
# build with projen
yarn build

Keywords

FAQs

Package last updated on 30 Apr 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc