Skip to content

Commit f3d6747

Browse files
updating the pinned versions (#1258)
* updating the pinned versions * removed redis resources as they cannot be imported into cloudformation
1 parent e0c151e commit f3d6747

File tree

4 files changed

+5
-30
lines changed

4 files changed

+5
-30
lines changed

sys/cloudformation/parameters.prod.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{"ParameterKey": "ELBCertificateArn", "ParameterValue": ""},
3-
{"ParameterKey": "EcrImageTagNginx", "ParameterValue": "1693596211"},
4-
{"ParameterKey": "EcrImageTagPhp", "ParameterValue": "1693596211"},
3+
{"ParameterKey": "EcrImageTagNginx", "ParameterValue": "1734722017"},
4+
{"ParameterKey": "EcrImageTagPhp", "ParameterValue": "1734722017"},
55
{"ParameterKey": "Environment", "ParameterValue": "prod"},
66
{"ParameterKey": "ExecRoleArn", "ParameterValue": ""},
77
{"ParameterKey": "Subnets", "ParameterValue": ""},

sys/cloudformation/stack.yaml

-25
Original file line numberDiff line numberDiff line change
@@ -580,31 +580,6 @@ Resources:
580580
Properties:
581581
UserName: !Ref iamusergithubactions
582582

583-
# REDIS
584-
rediscluster:
585-
Type: AWS::ElastiCache::ReplicationGroup
586-
Properties:
587-
AtRestEncryptionEnabled: False
588-
AutoMinorVersionUpgrade: True
589-
CacheNodeType: cache.t4g.micro
590-
CacheSubnetGroupName: !Ref redissubnet
591-
ClusterMode: Disabled
592-
Engine: redis
593-
EngineVersion: 7.0.7
594-
MultiAZEnabled: False
595-
NumNodeGroups: 1
596-
PrimaryClusterId: poser-stats
597-
ReplicationGroupDescription: poser-stats
598-
SecurityGroupIds: !Ref sgredis
599-
SnapshotRetentionLimit: 1
600-
TransitEncryptionEnabled: False
601-
redissubnet:
602-
Type: AWS::ElastiCache::SubnetGroup
603-
Properties:
604-
CacheSubnetGroupName: poser-subnet
605-
Description: poser-subnet
606-
SubnetIds: !Ref Subnets
607-
608583
################################################################################
609584
# Outputs #
610585
################################################################################

sys/docker/alpine-nginx/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM debian:12.7 as awsbuilder
55
ENV DEBIAN_FRONTEND noninteractive
66

77
RUN apt-get update && \
8-
apt-get install -y --no-install-recommends ca-certificates=20230311 curl=7.88.1-10+deb12u7 && \
8+
apt-get install -y --no-install-recommends ca-certificates=20230311 curl=7.88.1-10+deb12u8 && \
99
rm -rf /var/lib/apt/lists/*
1010

1111
RUN curl -O "https://s3.amazonaws.com/amazoncloudwatch-agent/ubuntu/$(dpkg --print-architecture)/latest/amazon-cloudwatch-agent.deb" && \

sys/docker/alpine-phpfpm/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM debian:12.7 as awsbuilder
55
ENV DEBIAN_FRONTEND noninteractive
66

77
RUN apt-get update && \
8-
apt-get install -y --no-install-recommends ca-certificates=20230311 curl=7.88.1-10+deb12u7 && \
8+
apt-get install -y --no-install-recommends ca-certificates=20230311 curl=7.88.1-10+deb12u8 && \
99
rm -rf /var/lib/apt/lists/*
1010

1111
RUN curl -O "https://s3.amazonaws.com/amazoncloudwatch-agent/ubuntu/$(dpkg --print-architecture)/latest/amazon-cloudwatch-agent.deb" && \
@@ -71,7 +71,7 @@ RUN apk add --no-cache --virtual .builddeps \
7171
zip \
7272
&& wget https://github.com/FriendsOfPHP/pickle/releases/download/v0.7.11/pickle.phar -O /usr/local/bin/pickle \
7373
&& chmod +x /usr/local/bin/pickle \
74-
&& pickle install yaml@2.1.0 --defaults --no-interaction \
74+
&& pickle install yaml@2.2.4 --defaults --no-interaction \
7575
&& pickle install [email protected] --defaults --no-interaction \
7676
&& ln -nfs /usr/local/etc/php/php.ini-production /usr/local/etc/php/php.ini
7777

0 commit comments

Comments
 (0)