Skip to content

Commit 6b9becc

Browse files
paweljwclaude
andauthored
Opus: Include AWS RDS CA bundle for SSL verification (#104)
Co-authored-by: Claude Opus 4.5 <[email protected]>
1 parent 4598151 commit 6b9becc

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

beyla/Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ RUN apt-get update && \
2929
apt-get clean && \
3030
rm -rf /var/lib/apt/lists/*
3131

32+
# Download AWS RDS CA bundle and update system CA store
33+
RUN curl -sS https://truststore.pki.rds.amazonaws.com/global/global-bundle.pem \
34+
-o /usr/local/share/ca-certificates/aws-rds.crt \
35+
&& update-ca-certificates
36+
3237
# Create necessary directories
3338
RUN mkdir -p /etc/supervisor/conf.d /var/log/supervisor /enrichment /bootstrap
3439

collector/Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,14 @@ RUN apt-get update && apt-get install -y \
1818
certbot \
1919
openssl \
2020
traceroute \
21+
ca-certificates \
2122
&& rm -rf /var/lib/apt/lists/*
2223

24+
# Download AWS RDS CA bundle and update system CA store
25+
RUN curl -sS https://truststore.pki.rds.amazonaws.com/global/global-bundle.pem \
26+
-o /usr/local/share/ca-certificates/aws-rds.crt \
27+
&& update-ca-certificates
28+
2329
# Copy Vector from vector image
2430
COPY --from=vector --chmod=755 /usr/bin/vector /usr/local/bin/vector
2531
COPY --from=vector /etc/vector /etc/vector

0 commit comments

Comments
 (0)