This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add a postgres service for labs (#75)
* Adds a second Postgres service for lab/assignment environments
Showing
6 changed files
with
59 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
all: | ||
hosts: | ||
illumidesk: | ||
## Required settings | ||
#------------------- | ||
ansible_host: 18.236.148.33 | ||
ansible_port: 22 | ||
ansible_user: ubuntu | ||
ansible_ssh_private_key_file: ~/Documents/3blades/illumidesk/aws/ubuntu-lab-12-19.pem | ||
|
||
# add a password only if your remote instance uses userid/password for SSH authentication | ||
ansible_password: | ||
|
||
## Optional settings | ||
#------------------- | ||
# organization name, also used for the sub-domain, such as acme | ||
org_name: hddata | ||
|
||
# top level domain, such as example.com | ||
tld: illumidesk.com | ||
|
||
# course label, such as finance101 | ||
course_id: course101 | ||
|
||
# lti 1.1 consumer key, by default this is set dynamically. add | ||
# own value to override setting. we recommend using the openssl | ||
# command to create secure strings: openssl rand -hex 16 | ||
lti11_consumer_key: hddata_consumer_key | ||
|
||
# lti 1.1 shared secret, by default set dynamically. set to at | ||
# least 32 random bytes: openssl rand -hex 32 | ||
lti11_shared_secret: hddata_shared_secret | ||
|
||
# set to yes to use LTI 1.1 | ||
lti11_enabled: true | ||
mnt_root: /mnt/efs/fs1 |
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