This package has been deprecated

Author message:

Please use 'serverless-default-aws-resource-attributes' instead, as it supports a superset of the functionality provided by this plugin.

serverless-default-aws-resource-properties

0.1.0 • Public • Published

CircleCI Coverage Status npm version

serverless-default-aws-resource-properties

DEPRECATION NOTICE: please use serverless-default-aws-resource-attributes instead, as it supports a superset of the functionality provided by this plugin. This plugin will no longer be maintained.

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-resource-properties

Register the plugin in serverless.yml:

plugins:
  - serverless-default-aws-resource-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:
        LoggingConfiguration:
          DestinationBucketName:
            Ref: LoggingBucket

Package Sidebar

Install

npm i serverless-default-aws-resource-properties

Weekly Downloads

99

Version

0.1.0

License

Apache-2.0

Unpacked Size

23.2 kB

Total Files

12

Last publish

Collaborators

  • neverendingqs