-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from vishi24/main
AWS CDK
- Loading branch information
Showing
141 changed files
with
14,842 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# MANDATORY INPUT - AWS account Id | ||
ACCOUNT="<aws-account-id>" | ||
|
||
# AWS region to deploy services, default "ap-south-1" | ||
REGION="" | ||
|
||
# AWS Availability Zone count, default 2 | ||
MAX_AZS= | ||
|
||
# VPC CIDR, change it as per your environment, default 10.70.0.0/16 | ||
CIDR="" | ||
|
||
# MANDATORY INPUT - Database password | ||
RDS_PASSWORD="Default@321" | ||
|
||
# Database user name, default "postgres" | ||
RDS_USER="" | ||
|
||
# EKS cluster name, default "sunbird-rc" | ||
EKS_CLUSTER_NAME = "" | ||
|
||
# MANDATORY INPUT - Amazon EKS mastersRole, to be associated with the system:masters RBAC group, giving super-user access to the cluster. | ||
ROLE_ARN = "arn:aws:iam::365975017663:user/mozammil" | ||
|
||
# MANDATORY INPUT - Unique S3 bucket name for storing registory contents through MinIO | ||
BUCKET_NAME="" | ||
|
||
# Keycloak admin password, used during initial UI login, default "admin@123" | ||
KEYCLOAK_ADMIN_PASSWORD= "" | ||
|
||
# Keycloak password to UI login, default "admin@123" | ||
KEYCLOAK_DEFAULT_USER_PASSWORD= "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
*.js | ||
!jest.config.js | ||
*.d.ts | ||
node_modules | ||
|
||
# CDK asset staging directory | ||
.cdk.staging | ||
cdk.out |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
*.ts | ||
!*.d.ts | ||
|
||
# CDK asset staging directory | ||
.cdk.staging | ||
cdk.out |
Oops, something went wrong.