feat: Add AWS CDK project and Helm charts for Beckn-Onix deployment on AWS cloud
This commit is contained in:
48
aws-cdk/helm/registry/values.schema.json
Normal file
48
aws-cdk/helm/registry/values.schema.json
Normal file
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"externalDomain": {
|
||||
"type": "string",
|
||||
"description": "The external domain for the registry."
|
||||
},
|
||||
"database": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"host": {
|
||||
"type": "string",
|
||||
"description": "The hostname of the RDS PostgreSQL database."
|
||||
},
|
||||
"password": {
|
||||
"type": "string",
|
||||
"description": "The password for the RDS PostgreSQL database."
|
||||
}
|
||||
},
|
||||
"required": ["host", "password"],
|
||||
"description": "Database configuration for the registry."
|
||||
},
|
||||
"ingress": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"tls": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"certificateArn": {
|
||||
"type": "string",
|
||||
"description": "The ARN of the TLS certificate for ingress."
|
||||
}
|
||||
},
|
||||
"required": ["certificateArn"],
|
||||
"description": "TLS configuration for ingress."
|
||||
}
|
||||
},
|
||||
"required": ["tls"],
|
||||
"description": "Ingress-related configuration."
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"externalDomain",
|
||||
"database",
|
||||
"ingress"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user