[landscape] Initial commit

This commit is contained in:
drymer 2019-01-29 21:02:31 +01:00
parent 526aea14b8
commit 39f6123aff
Signed by: drymer
GPG Key ID: A307D64D5DDFDAAD
2 changed files with 17 additions and 0 deletions

10
landscape/Dockerfile Normal file
View File

@ -0,0 +1,10 @@
# From https://github.com/coinbase/terraform-landscape/blob/master/Dockerfile
FROM alpine:3.8
RUN apk --no-cache add \
ruby-bundler=1.16.2-r1 \
ruby-json=2.5.2-r0 \
diffutils=3.6-r1 # this is required for diffy to work on alpine
RUN gem install --no-document --no-ri terraform_landscape
ENTRYPOINT ["landscape"]

7
landscape/README.md Normal file
View File

@ -0,0 +1,7 @@
# Landscape
A tool to render `terraform plan` output:
``` bash
docker run -ti registry.daemons.it/landscape
```