-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix issues with env vars and entrypoint (#79)
* fix issues with env vars and entrypoint * update example env.list
- Loading branch information
Showing
4 changed files
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
# List the subteams here separated by commas (eg "teamname.ssh.production,teamname.ssh.staging") that you | ||
# wish to use to grant SSH access | ||
TEAMS="teamname.ssh.staging,teamname.ssh.production,..." | ||
TEAMS=teamname.ssh.staging,teamname.ssh.production | ||
|
||
# Login info for the chat bot | ||
KEYBASE_USERNAME="username_of_ca_bot" | ||
KEYBASE_PAPERKEY="paper key for the ca bot" | ||
KEYBASE_USERNAME=username_of_ca_bot | ||
KEYBASE_PAPERKEY=paper key for the ca bot | ||
|
||
# DO NOT QUOTE VARIABLE VALUES | ||
# | ||
# These variables will be single quoted when loaded into the container. If you quote them here, those | ||
# quotes will become part of the variable value. | ||
|