0.0.1 • Published 5 years ago

serverless-default-aws-properties v0.0.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
5 years ago

CircleCI npm version

serverless-default-aws-properties

This plugin allows you to set default properties a given CloudFormation resource should have based on type.

Usage

Install the plugin:

npm install -D serverless-default-aws-properties

Register the plugin in serverless.yml:

plugins:
  - serverless-default-aws-properties

Example:

custom:
  defaultAwsProperties:
    # Enable SSE and block public access for all S3 buckets
    - Type: AWS::S3::Bucket
      Properties:
        BucketEncryption:
          ServerSideEncryptionConfiguration:
            - ServerSideEncryptionByDefault:
                SSEAlgorithm: AES256
        PublicAccessBlockConfiguration:
          BlockPublicAcls: true
          BlockPublicPolicy: true
          IgnorePublicAcls: true
          RestrictPublicBuckets: true
    # Add logging configuration to all S3 buckets except resource with logical
    # ID 'LoggingBucket'
    - Type: AWS::S3::Bucket
      Exclude:
        - LoggingBucket
      Properties:
        DestinationBucketName:
          Ref: LoggingBucket
0.0.1

5 years ago