Home > Software design >  store password in cloud9 environment
store password in cloud9 environment

Time:12-26

I started to use cloud9 and use Python code like this:

from getpass4 import getpass

DB_PASSWORD = getpass('Password: ')

This is suboptimal. Is there a way to store credentials in a cloud9 environment without pushing/committing them to git?

CodePudding user response:

We don't store passwords in Cloud9 and you neither have to push then to Git. The recommended way of storing secrets is to use an integration from another service from AWS.

AWS provides multiple services for storing credentials, for example:

  • Related