AWS:Crear un entorno de Cloud9 con CDK

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • cdk-cloud9

    IaC with CDk for cloud9

  • //https://github.com/olcortesb/cdk-cloud9/blob/main/lib/cdk-cloud9-stack.ts import * as cdk from 'aws-cdk-lib'; import * as ec2 from 'aws-cdk-lib/aws-ec2'; import * as cloud9 from 'aws-cdk-lib/aws-cloud9'; export class CdkCloud9Stack extends cdk.Stack { constructor(scope: cdk.App , id: string, props?: cdk.StackProps) { super(scope, id, props); // Create a VPC for the Cloud9 environment const vpc = new ec2.Vpc(this, 'Cloud9Vpc', { maxAzs: 3, // Adjust as needed }); // Create the Cloud9 environment new cloud9.CfnEnvironmentEC2(this, 'MyCloud9Environment', { instanceType: this.node.getContext('instance_type'), // Adjust as needed connectionType: 'CONNECT_SSM', name: this.node.getContext("name"), ownerArn: this.node.getContext("user_arn"), subnetId: vpc.publicSubnets[0].subnetId, }); } }

  • gitpod

    The developer platform for on-demand cloud development environments to create software faster and more securely.

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts