11 lines
363 B
Bash
Executable File
11 lines
363 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Consolidate setting of profile and region. This script is expected to be run before other
|
|
# scripts (or inside them if in `./scripts`). This makes it easier to manage these values
|
|
# across the project as it grows.
|
|
|
|
export APP_NAME="bms-repository"
|
|
export AWS_PROFILE="bms-repository"
|
|
export REGION="us-east-1"
|
|
export AWS_REGION="us-east-1"
|