Addiing in zookeeper example, fixes #159 #1790
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several significant changes to set up a ZooKeeper cluster on AWS using Pulumi. The changes span multiple files, including configuration files, code for infrastructure setup, and documentation.
Key changes include:
Infrastructure Setup:
aws-ts-zookeeper/index.ts
: Added comprehensive code to configure and deploy a ZooKeeper cluster on AWS. This includes setting up a VPC, security groups, IAM roles, instance profiles, launch templates, auto-scaling groups, load balancers, and CloudWatch monitoring.Configuration Files:
aws-ts-zookeeper/Pulumi.yaml
: Added configuration details for the Pulumi project, specifying the project name, runtime, package manager, and a description of the project.aws-ts-zookeeper/package.json
: Added package dependencies for Pulumi and AWS libraries required for the project.aws-ts-zookeeper/tsconfig.json
: Added TypeScript configuration options, including strict type checking, output directory, and module resolution settings.Documentation:
aws-ts-zookeeper/README.md
: Added detailed documentation on the components and features of the ZooKeeper cluster, as well as instructions for deployment.Gitignore:
aws-ts-zookeeper/.gitignore
: Added entries to ignore thebin
directory andnode_modules
directory.