Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

# Environment variables shared between ci and DEV.

# NOTE: If you change this value remember to produce a new image by running the "CQ image" workflow.
# See https://github.com/guardian/service-catalogue/actions/workflows/cq-image.yml
# See https://github.com/cloudquery/cloudquery/releases?q=cli
CQ_CLI=6.15.0

Expand Down
4 changes: 3 additions & 1 deletion containers/cloudquery/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ FROM ghcr.io/cloudquery/cloudquery:${CQ_CLI}

# Need to install RDS certs before running Cloudquery container due to
# access to the root filesystem being restricted
RUN wget -O /usr/local/share/ca-certificates/global-bundle.crt -q https://truststore.pki.rds.amazonaws.com/global/global-bundle.pem && update-ca-certificates
RUN apk add --no-cache ca-certificates
RUN wget -O /usr/local/share/ca-certificates/global-bundle.crt -q https://truststore.pki.rds.amazonaws.com/global/global-bundle.pem
RUN update-ca-certificates