-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sbt installation, dry violations, ansible.cfg (#3)
- Loading branch information
1 parent
ab8f46e
commit fa275dc
Showing
8 changed files
with
26 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
.terraform | ||
*.tfstate | ||
tests/inventory |
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,5 @@ | ||
[defaults] | ||
callback_whitelist = profile_tasks | ||
|
||
[ssh_connection] | ||
pipelining = True |
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,9 +1,14 @@ | ||
--- | ||
|
||
apt_packages: | ||
- awscli | ||
- bash | ||
- build-essential | ||
- ca-certificates | ||
- curl | ||
- default-jre | ||
- git | ||
- openssl | ||
- python3 | ||
- ssh | ||
- ssh-client | ||
|
@@ -14,17 +19,13 @@ apt_packages: | |
docker_packages: | ||
- apt-transport-https | ||
- aptitude | ||
- ca-certificates | ||
- curl | ||
- software-properties-common | ||
- python3-pip | ||
- virtualenv | ||
- python3-setuptools | ||
|
||
postgres_packages: | ||
- acl | ||
- bash | ||
- openssl | ||
- libpq-dev | ||
- libssl-dev | ||
- libssl-doc | ||
|
@@ -34,11 +35,8 @@ postgres_packages: | |
|
||
user: ubuntu | ||
|
||
db_user: ubuntu | ||
db_name: ubuntu | ||
db_password: ubuntu | ||
|
||
docker_user: ubuntu | ||
|
||
git_username: git-user | ||
git_email: [email protected] |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
- name: Add sbt repo | ||
apt_repository: repo='deb https://dl.bintray.com/sbt/debian /' state=present update_cache=no | ||
|
||
- name: Add sbt repo key | ||
apt_key: keyserver='hkp://keyserver.ubuntu.com:80' id='2EE0EA64E40A89B84B2DF73499E82A75642AC823' | ||
|
||
- name: Install sbt | ||
apt: name=sbt state=present update_cache=yes |
This file was deleted.
Oops, something went wrong.