Do I need to modify the docker-compose file to add social logins? #30
-
Is there any easy way to add additional configurations to supabase? Also, the environmental variables that are changing from terraform would not reflect in the deployed instance. (Ex-> ENABLE_EMAIL_AUTOCONFIRM in .env.tftpl) |
Beta Was this translation helpful? Give feedback.
Answered by
timothymamo
May 23, 2023
Replies: 1 comment 1 reply
-
Hey @Yasas4D, if you want to add any additional configuration to supabase you can do this by:
Hope this helps |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Yasas4D
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @Yasas4D, if you want to add any additional configuration to supabase you can do this by:
ENABLE_EMAIL_AUTOCONFIRM=${TF_ENABLE_EMAIL_AUTOCONFIRM}
)env_file
section (e.g.TF_ENABLE_EMAIL_AUTOCONFIRM = "${var.enable_email_autoconfirm}"
or set asTF_ENABLE_EMAIL_AUTOCONFIRM = true
if you don't need to change this)