Using AWS secrets as environment variables in Fargate container requires it to be passed in the secrets parameter within FargateTaskDefinition.addContainer().
Currently cdk-keycloak doesn't allow us to pass secrets from AWS Secrets Manager to the container in which Keycloak is deployed. The secrets parameter has been hardcoded to use only the ones generated by the Keycloak stack.
Request: Allow secrets parameter within FargateTaskDefinition.addContainer() to be appended with custom secrets.
Using AWS secrets as environment variables in Fargate container requires it to be passed in the
secrets
parameter withinFargateTaskDefinition.addContainer()
.Currently cdk-keycloak doesn't allow us to pass secrets from AWS Secrets Manager to the container in which Keycloak is deployed. The
secrets
parameter has been hardcoded to use only the ones generated by the Keycloak stack.Request: Allow
secrets
parameter withinFargateTaskDefinition.addContainer()
to be appended with custom secrets.