Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
24 views

I am currently creating a network infrastructure within my vpc, that has private subnets and has a NAT gateway. I have a Route Table that has the private subnets associated to it and I intend to have ...
WinkieWinkie's user avatar
0 votes
0 answers
53 views

I have this api gateway in my main stack: api_gateway = _api_gw.LambdaRestApi( self, f"{construct_id}-gw-api", handler=lambda_hello, rest_api_name=f"gw-api{env_ext}"...
Ahron Gold's user avatar
0 votes
1 answer
83 views

I'm trying to change my DynamoDB table from Provisioned to On Demand via CDK. The commented out code is what my table was provisioned with before, for autoscaling. table = new TableV2(this, props....
chinahalffull's user avatar
0 votes
1 answer
181 views

I am using AWS Cloudformation to build the infrastructure, I have a vpc that have a private subnet and 2 public subnets, the private subnet has the ecs service with ecs cluster and ecs task, the alb ...
Ghazi's user avatar
  • 766
0 votes
0 answers
27 views

While bootstrapping the environment for CloudFormation, we create a role with this format cdk-hnb659fds-cfn-exec-role-[ACCOUNT]-[REGION] This role is assumed by CloudFormation to create,delete and ...
ganeshram's user avatar
  • 127
0 votes
0 answers
22 views

I'm looking for the recommended local development workflow for a project that uses multiple, independent AWS SAM applications within a single monorepo. Setup: Layers Stack: one SAM application ...
Rotkiv's user avatar
  • 1,163
0 votes
1 answer
59 views

Repro steps: Verification emails work as handled by Cognito thanks to the IaC setting for UserPool (this one: AutoVerifiedAttributes: - email ) 2. add a Lambda function trigger to the userpool (e.g ...
Arkadiusz Kulpa's user avatar
0 votes
1 answer
69 views

I have various AWS regions configured, and they each have a default region specified. Thus with AWS CLI I can do this to list CloudFormation exports for the default profile: aws cloudformation list-...
Garret Wilson's user avatar
0 votes
0 answers
81 views

I'm working on a AWS Sam Application (repo here) where I want to conditionally set CodeUri to use an S3 bucket 'hot-reload' for running locally on Localstack. SpringBootLambdaFunction: Type: AWS:...
Joseph Faulkner's user avatar
1 vote
0 answers
55 views

Even with the sample from the AWS toolkit, each time I use GitHub Actions to build and publish a lambda function I am getting the error Error: .NET binaries for Lambda function are not correctly ...
Karl Richey's user avatar
1 vote
1 answer
227 views

In the Cognito CloudFormation resourceAWS::Cognito::UserPoolClient documentation for ExplicitAuthFlows it says: ALLOW_USER_AUTH: Enable selection-based sign-in with USER_AUTH. This setting covers ...
Garret Wilson's user avatar
0 votes
1 answer
58 views

Trying to create and API Gateway with lambda and attach the authorizer to it. The api and lambda creation works perfectly, but when I add the authorizer section, I get the following error: Error: ...
Eduard Grinberg's user avatar
0 votes
0 answers
29 views

I get the following error when I try to deploy a 'High Availability' EBS environment Creating Auto Scaling group named: awseb-e-uyrzzcumbu-stack-AWSEBAutoScalingGroup-H6IXr3kSXJO8 failed. Reason: ...
Chubi Best's user avatar
0 votes
1 answer
124 views

I have a glue table that is fed by partitioned data in s3. The issue at hand is in Athena that if the partition projection is turned off, and I run MSCK REPAIR TABLE <my table>; and SELECT * ...
Raisin's user avatar
  • 21
0 votes
1 answer
78 views

My use case is to create a bot using the YAML file. When a user asks questions related to my knowledge base, I need the bot to provide answers. I tried using the QnA intent in the AWS console, but it’...
Thomas Joseph's user avatar
0 votes
3 answers
76 views

I want to create a lex bot with serverless.yaml and I want to use the aws bedrocks builtin intent qnaintent. I am able to create the bot with intents from the serverless.yaml but I am unable to add ...
Thomas Joseph's user avatar
0 votes
0 answers
32 views

I have an existing aws account with infrastructure that has already been deployed via CDK with a codepipeline. The codepipeline is specifying which stacks to deploy via the addStage function of ...
user2683809's user avatar
0 votes
0 answers
119 views

I've been working with CDK for a bit, and haven't had any reason to modify any of the default roles/policies that are auto-generated when I create resources like lambdas or step functions. However, I ...
BaroneSanitation's user avatar
0 votes
2 answers
35 views

I want to define multiple AWS Batch jobs that all use the same environment variables defined in Secrets Manager. I understand CloudFormation does not supports YAML anchors and aliases. Is there a way ...
luan nguyen's user avatar
0 votes
2 answers
138 views

I have a CF template where I export a value like this: Outputs: LambdaLogGroup: Value: !Ref LambdaLogGroup Export: Name: !Sub "LambdaLogGroup-${EnvironmentName}${EnvironmentId}" ...
Timothy Clotworthy's user avatar
0 votes
0 answers
11 views

I have multiple CloudFormation stacks with serial dependencies (Stack A2 depends on Stack A1, etc.). I've noticed a pattern during stack updates where CloudFormation appears to report the ...
Varun Gawande's user avatar
0 votes
1 answer
71 views

I'm aware of Fn::FindInMap, which provides a two-level map. Consider this example from a Mappings section: ShortNames: us-east-1: '753': us '426': us eu-west-1: ...
davidvandebunte's user avatar
1 vote
2 answers
45 views

If a module is registered in CloudFormation with a default version, is there a way to specify a different version in the CF YAML file? For instance, if the default version is '000002' but I want to ...
Steyn van Wyk's user avatar
0 votes
1 answer
62 views

CloudWatch RUM in the AWS UI console has a field for "Application domain" and a separate checkbox for "Include sub domains". However, there is no corresponding boolean field in ...
Antrikshy's user avatar
  • 3,138
1 vote
0 answers
185 views

I need to create AWS Cloudfront distributions in a ForEach loop based on the strings coming in a parameter named UnauthDomains of type CommaDelimitedList.So 5 comma seperated strings in the list and ...
Amol Kshirsagar's user avatar

1
2 3 4 5
168