How to Block Traffic to Your Website from Russia and Belarus

Written by devabram | Published 2022/03/05
Tech Story Tags: ukraine | aws | devops | technology | web-development | hackernoon-top-story | website-traffic | standwithukraine

TLDRRussia invaded Ukraine on the 24th of February 2022. Our company and I are strong supporters and believers in individual liberty, free trade, and free association. In addition to being against war, we strongly oppose evil and destructive ideas that support autocracies. We want to invite you all to block your website traffic from Russia and Belarus to show support for the Ukrainian people. The following tutorial will help you to enable CloudFront Geographic Restrictions and block traffic.via the TL;DR App

Russia invaded Ukraine on the 24th of February 2022. Belarus offers logistic support to the Russian army.

Our company websiteĀ won't be available in Russia and BelarusĀ until the invasion stops. We don't intend to punish our readers from Russia and Belarus but to show dissatisfaction and disapproval of the political and philosophical stance of the Russian government.

Our company and I areĀ strong supporters and believersĀ inĀ individual liberty, free trade, and free association. In addition to being against war, we strongly oppose evil and destructive ideas that support autocracies. Make no mistake,Ā this is not the doing of one man, but a joint effort of individuals who believe it is not you who should be deciding how to live your life.

We will continue doing as much as possible to show our support for the Ukrainian people and invite you all to do the same. If you use CloudFront as your CDN, the following tutorial will help you toĀ enable CloudFront Geographic RestrictionsĀ and block traffic from Russia and Belarus.

If you are using any other CDN or a different provider, send us an email atĀ [email protected]. I will personally assist you in blocking traffic.


I will show you three ways to block traffic depending on how your CloudFront distribution is provisioned.

  • Manually / AWS Console
  • CloudFormation
  • Terraform

Manually / AWS Console

OpenĀ CloudFront DistributionsĀ and choose the distribution.


Click on theĀ Geographic restrictionsĀ tab. Click on edit button.


CheckĀ Restriction typeĀ -Ā Block listĀ and select from the dropdown Russia and Belarus. Click Save changes.


You have just blocked all traffic from Russia and Belarus. All visitors from those locations will get 403 (Forrbidden) status code.


CloudFormation

If you are deploying the CloudFront via CloudFormation add this code toĀ RestrictionsĀ inĀ CloudFrontDistributionĀ Properties.

Use the following code snippet:

CloudFrontDistribution:
  Type: 'AWS::CloudFront::Distribution'
  Properties:
    DistributionConfig:
      ...
      Restrictions:
        GeoRestriction:
          Locations:
          - RU
          - BY
          RestrictionType: blacklist

Terraform

You can easily add restrictions objects to yourĀ aws_cloudfront_distributions.

Use the following code snippet:

resource "aws_cloudfront_distribution" "website_distribution" {
  ...
  restrictions {
    geo_restriction {
      restriction_type = "blacklist"
      locations        = ["RU", "BY"]
    }
  }
}

Thank you for reading. ā¤ļøšŸ‡ŗšŸ‡¦

Also published on CroCoder.


Written by devabram | I like to build stuff, so I build stuff.
Published by HackerNoon on 2022/03/05