-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.envrc
34 lines (26 loc) · 912 Bytes
/
.envrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#! /usr/bin/env bash
PATH_add ./bin
##########################################
# DO NOT MAKE LOCAL CHANGES TO THIS FILE #
# #
# Vars in this file can be overridden by #
# exporting them in .envrc.local #
##########################################
#############################
# AWS VAULT SETTINGS #
#############################
export AWS_VAULT_KEYCHAIN_NAME=login
# Have chamber use the default SSM alias
export CHAMBER_KMS_KEY_ALIAS=aws/ssm
# Set Cloudtamer URL and IDMS
export CT_URL="https://cloudtamer.cms.gov"
export CT_IDMS="2"
##############################################
# Load Local Overrides and Check Environment #
##############################################
# Load a local overrides file. Any changes you want to make for your local
# environment should live in that file.
if [ -e .envrc.local ]
then
source_env .envrc.local
fi