skip to Main Content

How to make aws aurora serverless v2 publicly accessible through cloudformation – Amazon Web Sevices

I'm trying to connect aws aurora serverless v2 with pgadmin or another postgres client. I have deployed the resources using cloudformation and serverless framework. This is my current yml configuration: resources: Conditions: CreateProdResources: !Equals ["${self:provider.stage}", "prod"] CreateDevResources: !Not [!Equals ["${self:provider.stage}",…

VIEW QUESTION

Access denied to cloudfront distribution s3

I'm uploading a website to S3 which I configured to be accessed via a cloudfront distribution. When I access the distribution URL through in the browser I get: <Error> <Code>AccessDenied</Code> <Message>Access Denied</Message> <RequestId>TKHNQGGSSHY3ZH6T</RequestId> <HostId>zXD7uBIpJUGHaUl8m5/9xtm2cnvX/Kok6rYp0oz6RFbqJeLreohaOWHx4jHJ/F675UGxo1SfEYs= </HostId> </Error> This is my sam…

VIEW QUESTION

CloudFormation claims KMS policy statement principals are invalid

I have the following SAM template: AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: > test lambda Globals: Function: Timeout: 3 Tracing: Active Api: TracingEnabled: True Resources: NotesFunction: Type: AWS::Serverless::Function Properties: PackageType: Zip CodeUri: notes/ Handler: app.lambdaHandler Runtime: nodejs18.x Policies: - AmazonDynamoDBFullAccess Architectures:…

VIEW QUESTION
Back To Top
Search