Skip to content

Releases: thinkinglabs/aws-iam-policy

v2.0.0

12 Apr 09:02
Compare
Choose a tag to compare

Changelog

  • Add support for Condition (breaking change)

    This adds an object model for the Condition element of an IAM Policy
    Statement. To build a Statement having a Condition:

    new Statement({
      effect: "Deny",
      ...
      conditions: [
        new Condition("StringNotLike", "aws:userId", ["userId1", "userId2", ...]),
      ]
    })

Full Changelog: v1.0.2...v2.0.0

Node.js Package

npm install --save-dev @thinkinglabs/aws-iam-policy@2.0.0

v1.0.2

12 Apr 09:06
Compare
Choose a tag to compare

Changelog

  • Initial release

Node.js Package

npm install --save-dev @thinkinglabs/aws-iam-policy@1.0.2