Hello everyone! Thanks for checking out this project. If you have any questions, don't hesitate to reach out to me!
In the video, there is one command that I use for deploying the CloudFormation template stack into my AWS account using the AWS CLI. The command is highlighted below:
$ aws cloudformation deploy --stack-name <replace_me> --template-file <replace_me> NOTE: Add -capabilities CAPABILITY_NAMED_IAM for IAM role deployment
To clean up your stack, enter the following command:
$ aws cloudformation delete-stack --stack-name <name_of_stack>When you get to the part where you're about to activate the AwsCommunity::EC2::SecurityGroupRestrictedSSH hook, you'll want to ensure that the
configuration schema is set to the following:
{
"CloudFormationConfiguration": {
"HookConfiguration": {
"TargetStacks":"ALL",
"FailureMode":"FAIL"
}
}
}