AWS:Crear un entorno de Cloud9 con CDK

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

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • 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.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB 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

  • Exposei Gitpod workspace ports on external IP ?

    1 project | /r/gitpod | 6 Jul 2023
  • Use PyCharm remotely

    1 project | /r/pycharm | 4 Jul 2023
  • Can I do dotnet (6+) webapi dev just using docker containers, and not installing any SDKs on my computer?

    1 project | /r/dotnet | 1 Apr 2023
  • How to run Medusa on Gitpod

    1 project | dev.to | 31 Mar 2023
  • programming while poor

    2 projects | /r/learnprogramming | 15 Mar 2023