Skip to content

v1.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 16 Mar 08:24
· 3301 commits to main since this release
57442a8

1.0.0 (2021-03-16)

Code Refactoring

  • create a simpler interface for defining security group rules (#319) (57442a8)

BREAKING CHANGES

  • CidrIngress and CidrEgress have been removed in favour of a single SecurityGroupAccessRule. This change forces a description to be provided for every rule as it makes it easier to reason about in the AWS console.
  • It also changes the type of port to number | Port - if you provide a number the protocol will default to TCP as this is the most common use-case. This should provide a simpler API.
  • transformToCidrIngress is renamed to transformToSecurityGroupAccessRule as it's not longer tied to ingress rules.
  • Port 22 is completely forbidden as SSH over SSM is preferred.