skip to Main Content

Security group 'ALB-sg' is not valid – Amazon Web Sevices

I create an ALB by Cfn, but I got the error called Security group 'ALB-sg' is not valid (Service: AmazonElasticLoadBalancing; Status Code: 400; Error Code: ValidationError; Request ID: 6ec8a268-80cc-4a3e-9477-809dba8a00c7; Proxy: null) AWSTemplateFormatVersion: 2010-09-09 Description: AWS CloudFormation Sample Template for creating…

VIEW QUESTION

Getting the error: Resource handler returned message: "AWS WAF couldn't perform the operation because your resource doesn?t exist – Amazon Web Sevices

#WAF Code Resources: MyWaf: Type: 'AWS::WAFv2::WebACL' Properties: Name: My-waf Scope: CLOUDFRONT DefaultAction: Block: {} VisibilityConfig: CloudWatchMetricsEnabled: true MetricName: my-waf-metric SampledRequestsEnabled: true Rules: - Name: AWSManagedRulesCommonRuleSet Statement: ManagedRuleGroupStatement: VendorName: AWS Name: CommonRuleSet Priority: 1 Action: Block: {} OverrideAction: Count: {} VisibilityConfig:…

VIEW QUESTION

CDK: How to use same Iam role between 2 different stacks? – Amazon Web Sevices

I have a stack which creates 2 different codebuild projects. const codeBuildProject = new CodeBuildProjects(this, 'pipelineCodeBuildProjects', { PlanProjectName: 'one-project', DeployProjectName: 'second-project' OneProjectIamRoleName: 'iam-role', twoProjectIamRoleName: 'iam-role' }) This is stack class export class CodeBuildProjects extends cdk.Stack { public readonly plan: codeBuildProject;…

VIEW QUESTION
Back To Top
Search