Configuration template to create a CloudFront Origin Access Control which can be added to an origin in a CloudFront distribution so that CloudFront sends authenticated (signed) requests to the origin. For an Amazon S3 origin, this makes it possible to block public access to the Amazon S3 bucket so that viewers (users) can access the content in the bucket only through CloudFront.

Items
1
Size
0.4 KB
Missing Parameters
AWSTemplateFormatVersion: '2010-09-09'
Description: ''
Resources:
  CloudFrontOriginAccessControl:
    Type: 'AWS::CloudFront::OriginAccessControl'
    Properties:
      OriginAccessControlConfig:
        Name: ''
        Description: ''
        OriginAccessControlOriginType: s3
        SigningBehavior: always
        SigningProtocol: sigv4
Parameters: {}
Metadata: {}
Conditions: {}

Actions



Customize Template

Origin Access Control Settings

* Required field