Skip to content

Commit

Permalink
Merge pull request #1 from vishi24/main
Browse files Browse the repository at this point in the history
AWS CDK
  • Loading branch information
srprasanna authored Jan 8, 2024
2 parents 3fc85a5 + 0f31c6c commit b2b9d7e
Show file tree
Hide file tree
Showing 141 changed files with 14,842 additions and 1 deletion.
32 changes: 32 additions & 0 deletions .env
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= ""
8 changes: 8 additions & 0 deletions .gitignore
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
6 changes: 6 additions & 0 deletions .npmignore
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
Loading

0 comments on commit b2b9d7e

Please sign in to comment.