-
Notifications
You must be signed in to change notification settings - Fork 9
/
.env
37 lines (27 loc) · 1.49 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# MANDATORY INPUT - AWS account Id
ACCOUNT="1234"
# AWS region to deploy services, default "ap-south-1"
REGION="ap-south-1"
# AWS Availability Zone count, default 2
MAX_AZS=2
# VPC CIDR, change it as per your environment, default 10.70.0.0/16
CIDR="10.20.0.0/16"
# MANDATORY INPUT - Database password
# Constraints: At least 8 printable ASCII characters. Can't contain any of the following: / (slash), '(single quote), "(double quote) and @ (at sign).
RDS_PASSWORD="SunbirdRC-987"
# Database user name, default "postgres"
RDS_USER="postgres"
# EKS cluster name, default "sbrc2"
EKS_CLUSTER_NAME = "ekscluster-sbrc2"
# 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::<aws-account-id>:role/Admin"
# MANDATORY INPUT - External domain for Registry and Keycloak
RC_EXTERNAL_DOMAIN="" # E.g. registry.sunbird-rc.io
# MANDATORY INPUT - SSL certificate ARN for External Domain defined above to access Registry and Keycloak services
# AWS Certificate Manager - https://aws.amazon.com/certificate-manager/
CERT_ARN="" # E.g. arn:aws:acm:ap-south-1:<aws-account-id>:certificate/<identifier>. Pls check user guide for SSL public certificate creation steps through AWS Certificate Manager
# Modules to be insalled as part of this deployment
# RC --> both R and C modules of SunBird RC 2.0 (Default)
# R --> only R part of SunBird RC 2.0
# C --> Only C part of SunBird RC 2.0
SUNBIRD_RC_MODULES_CHOICE = 'RC'