-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(aws-certificatemanager): add DNSValidatedCertificate
Add a new class to `@aws-cdk/aws-certificatemanager` called `DNSValidatedCertificate`. This class generates a certificate request using AWS Certificate Manager and auto-validates the request using the provided DNS "magic cookie" records. The user need only supply the Domain Name of the certificate and a Route 53 Hosted Zone. A CloudFormation Custom Resource is used along with the supplied Lambda function to perform the operation.
- Loading branch information
Showing
15 changed files
with
2,482 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...ages/@aws-cdk/aws-certificatemanager/lib/dns_validated_certificate_handler/.eslintrc.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": "standard" | ||
} |
6 changes: 6 additions & 0 deletions
6
packages/@aws-cdk/aws-certificatemanager/lib/dns_validated_certificate_handler/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
node_modules/ | ||
|
||
dist | ||
.LAST_PACKAGE | ||
.LAST_BUILD | ||
*.snk |
1 change: 1 addition & 0 deletions
1
packages/@aws-cdk/aws-certificatemanager/lib/dns_validated_certificate_handler/.node-version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
8.10.0 |
5 changes: 5 additions & 0 deletions
5
packages/@aws-cdk/aws-certificatemanager/lib/dns_validated_certificate_handler/.npmignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
dist | ||
.LAST_PACKAGE | ||
.LAST_BUILD | ||
*.snk |
Oops, something went wrong.