Skip to content

2.0.0

Compare
Choose a tag to compare
@eoinsha eoinsha released this 10 Oct 09:24
· 112 commits to main since this release

📣 This is a major release for AWS SAM and CloudFormation support! This feature was contributed by @ssamueluk.

🐿 SAM and ☁️ CloudFormation support! - Support for AWS SAM and CloudFormation projects is available now with the SLIC Watch CloudFormation Macro. See the README for setup instructions and let us know your feedback
Better support for resources with no provided name. CloudFormation resources that do not provide the optional resource name are now supported for all services.

  • BREAKING CHANGE: The dashboard names now include a region identifier so the same service can be deployed to multiple regions in the same account.
  • BREAKING CHANGE: The alarm name has changed slightly for each service. Every alarm begins with the service name followed by an underscore. This was done for two reasons:
  1. To ensure some consistency in alarm names
  2. SLIC Watch now supports resources that do not explcitly set a name
    (e.g. Lambda FunctionName or DynamoDB TableName). This changed how
    we generate logical IDs for CloudFormation Alarm resources. Since we
    have changed the logical ID, CloudFormation will create new Alarms to
    replace the previous one before it deletes the old one. We had to
    ensure that the alarm name would differ from the previous name or an
    AlarmName conflict would result, failing the CloudFormation deployment