Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

AWS apps user is used by the openIDL application. For example, to pull the vault access credentials from AWS secrets manager.

The AWS apps user access key and secret key are available in the terraform state.

To create new AWS secret, go to AWS secrets manager and create a secret of type Other with name "{{ env_id }}-apps-user", where the "{{env_id}}" is the value as configured in the private git config file.

The secret should be stored as json:

Code Block
{
    "access_id":"ACCESS ID",
    "secret_key":"SECRET KEY"
} 


...