Created
April 25, 2017 17:40
-
-
Save jrstarke/ab60f3713675c69d9377fbd1b5017459 to your computer and use it in GitHub Desktop.
https://github.com/aws/aws-cli/issues/2564 reproduction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWSTemplateFormatVersion: "2010-09-09" | |
Description: "Main Stack" | |
Resources: | |
SubStack: | |
Type: "AWS::CloudFormation::Stack" | |
Properties: | |
TemplateURL: template2.yaml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWSTemplateFormatVersion: "2010-09-09" | |
Description: "Substack that has an AWS WAF Preconfigured Protections Distribution" | |
Resources: | |
LogsBucket: | |
Type: "AWS::S3::Bucket" | |
Properties: | |
AccessControl: Private | |
PreconfiguredProtections: | |
Type: "AWS::CloudFormation::Stack" | |
Properties: | |
TemplateURL: https://s3.amazonaws.com/solutions-reference/aws-waf-security-automations/latest/aws-waf-security-automations.template | |
Parameters: | |
CloudFrontAccessLogBucket: !Ref AppDistributionLogsBucket | |
SqlInjectionProtectionParam: "yes" | |
CrossSiteScriptingProtectionParam: "yes" | |
ActivateHttpFloodProtectionParam: "yes" | |
ActivateScansProbesProtectionParam: "yes" | |
ActivateReputationListsProtectionParam: "yes" | |
ActivateBadBotProtectionParam: "no" | |
SendAnonymousUsageData: "yes" | |
RequestThreshold: 400 | |
ErrorThreshold: 50 | |
WAFBlockPeriod: 30 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment