Drupal is a registered trademark of Dries Buytaert
Protected Pages 3.0.0 Major update available for module protected_pages (3.0.0). Commerce Core 3.3.8 Minor update available for module commerce (3.3.8). Search API HTML Element Filter 1.0.7 Minor update available for module search_api_html_element_filter (1.0.7). Layout Builder Reorder 2.0.1 Minor update available for module layout_builder_reorder (2.0.1). Ban 1.1.0 Minor update available for module ban (1.1.0). Field Formatter Range 2.0.0 Major update available for module field_formatter_range (2.0.0). Field Formatter Range 8.x-1.8 Minor update available for module field_formatter_range (8.x-1.8). Varbase Media Header 9.2.1 Minor update available for module varbase_media_header (9.2.1). Search API Solr 4.3.11 Module search_api_solr updated after 14 months of inactivity (4.3.11). Provus Mega Menu Module provus_mega_menu crossed 1,000 active installs.

CloudFront Purger

988 sites Security covered
View on drupal.org

This module provides a plugin to clear the cache for AWS CloudFront, a reverse proxy for your Drupal site. It supports invalidating specific URLs or paths using cache tags, aiding in efficient cache management.

You can use AWS CloudFront as a reverse proxy in front of your whole Drupal site.

This module provides a very simple AWS CloudFront Purge Purger plugin.

WARNING: You are charged for each invalidation on CloudFront. Do your own calculations before using this module.

Features

  • Path invalidation: Invalidate specific URLs or wildcard patterns
  • Cache tag invalidation: Native CloudFront cache tag support using the Cache-Tag header and tag-based invalidation API

Required Modules

  • Path invalidation: Requies a module like Purge URLs queuer or your own custom code.
  • Cache tag invalidation: enable the CloudFront Purger Tags submodule (experimental).

    Installation

    This module requires you to have the AWS SDK loaded in your classpath.

    The recommended approach is to install this module via composer, which will also
    install the dependency. You can manually install the AWS SDK using the
    following::

    composer require aws/aws-sdk-php:~3.0

    Configuration

    You need to specify the Distribution ID in your settings.php.

    $config['cloudfront_purger.settings']['distribution_id'] = 'ABCD1234';

    Alternatively, you can use drush to set it, then export as part of your site configuration.

    drush config-set cloudfront_purger.settings distribution_id ABCD1234

    Overriding AWS CloudFront region.

    You can override the CloudFront client region by adding the following to your sites services.yml file:

    parameters:
      cloudfront.cloudfront_client.options:
        region: us-east-1
        version: latest

    AWS Authentication

    You can set the AWS key and secret in settings.php:

    $config['cloudfront_purger.settings']['aws_key'] = 'ABCD1234';
    $config['cloudfront_purger.settings']['aws_secret'] = 'ABCD1234';

    If you do not explicitly set AWS key and secret in config, it will fall back to:

    • IAM Roles
    • Exporting credentials using environment variables
    • Using a profile in a ~/.aws/credentials file

    See the AWS SDK Guide on Credentials

    You will need to allow the cloudfront:CreateInvalidation action in your IAM policy.

  • Activity

    Total releases
    2
    First release
    Mar 2025
    Latest release
    2 months ago
    Releases (12 mo)
    1
    Maintenance
    Active

    Releases

    Version Type Release date
    2.2.0 Stable May 13, 2026
    2.1.1-beta1 Pre-release Mar 25, 2025