aws-cdk-ses-domain-identity
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -0,1 +1,9 @@ | ||
## [1.0.1](https://github.com/mooyoul/aws-cdk-ses-domain-identity/compare/v1.0.0...v1.0.1) (2020-06-12) | ||
### Bug Fixes | ||
* **iam:** add addtional required SES IAM actions ([ca41f94](https://github.com/mooyoul/aws-cdk-ses-domain-identity/commit/ca41f94e62e2a271e367d748be8b0c5a8efce882)) | ||
* **typing:** fix broken types location ([9162f52](https://github.com/mooyoul/aws-cdk-ses-domain-identity/commit/9162f52793ee45e78dc09f9804f12eb315859322)) | ||
# 1.0.0 (2020-06-09) | ||
@@ -2,0 +10,0 @@ |
@@ -34,3 +34,10 @@ "use strict"; | ||
requestorFunction.addToRolePolicy(new iam.PolicyStatement({ | ||
actions: ["ses:VerifyDomainIdentity", "ses:VerifyDomainDkim", "ses:ListIdentities", "ses:DeleteIdentity"], | ||
actions: [ | ||
"ses:GetIdentityMailFromDomainAttributes", | ||
"ses:GetIdentityDkimAttributes", | ||
"ses:VerifyDomainIdentity", | ||
"ses:VerifyDomainDkim", | ||
"ses:ListIdentities", | ||
"ses:DeleteIdentity", | ||
], | ||
resources: ["*"], | ||
@@ -37,0 +44,0 @@ })); |
@@ -10,6 +10,6 @@ { | ||
"@prescott/tslint-preset": "1.0.0", | ||
"@types/aws-lambda": "8.10.52", | ||
"@types/jest": "25.2.3", | ||
"@types/aws-lambda": "8.10.55", | ||
"@types/jest": "26.0.0", | ||
"@types/nock": "11.1.0", | ||
"@types/node": "12.12.44", | ||
"@types/node": "12.12.47", | ||
"@types/sinon": "9.0.4", | ||
@@ -23,3 +23,3 @@ "aws-sdk": "2.689.0", | ||
"tslint": "6.1.2", | ||
"typescript": "3.9.3" | ||
"typescript": "3.9.5" | ||
}, | ||
@@ -26,0 +26,0 @@ "scripts": { |
{ | ||
"name": "aws-cdk-ses-domain-identity", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Constructs for provisioning and referencing domain identities which can be used in SES RuleSets and Actions Construct.", | ||
"main": "dist/dns-validated-domain-identity.js", | ||
"types": "types/dns-validated-domain-identity.d.ts", | ||
"types": "dist/dns-validated-domain-identity.d.ts", | ||
"dependencies": {}, | ||
@@ -12,23 +12,22 @@ "peerDependencies": { | ||
"@aws-cdk/aws-route53": "0.0.0", | ||
"@aws-cdk/core": "0.0.0", | ||
"constructs": "^3.0.2" | ||
"@aws-cdk/core": "0.0.0" | ||
}, | ||
"devDependencies": { | ||
"@aws-cdk/assert": "1.42.1", | ||
"@aws-cdk/aws-iam": "1.42.1", | ||
"@aws-cdk/aws-lambda": "1.42.1", | ||
"@aws-cdk/aws-route53": "1.42.1", | ||
"@aws-cdk/core": "1.42.1", | ||
"@aws-cdk/assert": "1.45.0", | ||
"@aws-cdk/aws-iam": "1.45.0", | ||
"@aws-cdk/aws-lambda": "1.45.0", | ||
"@aws-cdk/aws-route53": "1.45.0", | ||
"@aws-cdk/core": "1.45.0", | ||
"@prescott/commitlint-preset": "1.0.0", | ||
"@prescott/semantic-release-config": "1.0.0", | ||
"@prescott/tslint-preset": "1.0.0", | ||
"@types/jest": "25.2.3", | ||
"@types/node": "12.12.43", | ||
"@types/jest": "26.0.0", | ||
"@types/node": "12.12.47", | ||
"husky": "4.2.5", | ||
"jest": "26.0.1", | ||
"semantic-release": "17.0.7", | ||
"semantic-release": "17.0.8", | ||
"ts-jest": "26.1.0", | ||
"ts-node": "8.10.2", | ||
"tslint": "6.1.2", | ||
"typescript": "3.9.3" | ||
"typescript": "3.9.5" | ||
}, | ||
@@ -35,0 +34,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
31090
4
513