-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from BrownUniversity/chore-version-upgrades
Chore version upgrades
- Loading branch information
Showing
14 changed files
with
506 additions
and
261 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 +1 @@ | ||
2.7.1 | ||
3.1.2 |
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 +1 @@ | ||
1.0.0 | ||
1.2.5 |
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,2 @@ | ||
terraform 1.2.5 | ||
ruby 3.1.2 |
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,6 @@ | ||
brew "pre-commit" | ||
brew "terraform-docs" | ||
brew "tflint" | ||
brew "tfsec" | ||
|
||
cask "google-cloud-sdk" |
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,27 @@ | ||
FROM hashicorp/terraform:1.2.5 | ||
|
||
COPY .ruby-version .ruby-version | ||
|
||
# Update and install all of the required packages. | ||
# At the end, remove the apk cache | ||
RUN apk upgrade && \ | ||
apk add --update \ | ||
bash \ | ||
curl-dev \ | ||
curl \ | ||
"ruby-dev=~$(cat .ruby-version)" \ | ||
"ruby-full=~$(cat .ruby-version)" \ | ||
build-base \ | ||
python3 && \ | ||
rm -rf /var/cache/apk/* | ||
|
||
RUN mkdir /usr/app | ||
WORKDIR /usr/app | ||
|
||
COPY Gemfile* ./ | ||
RUN gem install bundler && \ | ||
bundle config set system 'true' && \ | ||
bundle install | ||
|
||
|
||
ENTRYPOINT ["/bin/bash"] |
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,3 +1,3 @@ | ||
source "https://rubygems.org/" do | ||
gem "kitchen-terraform", "~> 5.8" | ||
gem "kitchen-terraform", "~> 6.1.0" | ||
end |
Oops, something went wrong.