File size: 917 Bytes
d8ad0fd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | AWSTemplateFormatVersion: "2010-09-09"
Transform: AWS::Serverless-2016-10-31
Resources:
RedisServerlessIdempotency:
Type: AWS::ElastiCache::ServerlessCache
Properties:
Engine: redis
ServerlessCacheName: redis-cache
SecurityGroupIds: # (1)!
- security-{your_sg_id}
SubnetIds:
- subnet-{your_subnet_id_1}
- subnet-{your_subnet_id_2}
HelloWorldFunction:
Type: AWS::Serverless::Function
Properties:
Runtime: python3.12
Handler: app.py
VpcConfig: # (1)!
SecurityGroupIds:
- security-{your_sg_id}
SubnetIds:
- subnet-{your_subnet_id_1}
- subnet-{your_subnet_id_2}
Environment:
Variables:
POWERTOOLS_SERVICE_NAME: sample
REDIS_HOST: !GetAtt RedisServerlessIdempotency.Endpoint.Address
REDIS_PORT: !GetAtt RedisServerlessIdempotency.Endpoint.Port
|