|
|
|
|
|
by avip
2366 days ago
|
|
Like it or not (I do...) terraform is the de-facto industry standard, and pretty much the only mature cloud resources management tool I'm aware of. It is unwise IMHO to use CloudFormation currently unless you're provisioning resources so obscure they didn't yet make it to tf aws provider. BTW your Dockerfile pretty much boils down to: FROM alpine:3.10
RUN apk add --no-cache \
python3
RUN pip3 install awscli
COPY config /root/.aws/
COPY credentials /root/.aws/
|
|