@infoxchange/make-it-so 2.7.1 → 2.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,8 +9,8 @@ export class IxCertificate extends Construct {
|
|
|
9
9
|
this.acmCertificate = this.createCertificate(scope, id, props);
|
|
10
10
|
}
|
|
11
11
|
createCertificate(scope, id, props) {
|
|
12
|
-
const certificateCreationLambdaArn = StringParameter.valueForStringParameter(scope, "/shared-services/acm/lambdaArn");
|
|
13
|
-
const certificateCustomResource = new CustomResource(scope, "
|
|
12
|
+
const certificateCreationLambdaArn = StringParameter.valueForStringParameter(scope, "/shared-services/acm/lambdaArn-v2");
|
|
13
|
+
const certificateCustomResource = new CustomResource(scope, "DomainCert-" + id, {
|
|
14
14
|
resourceType: "Custom::CertIssuingLambda",
|
|
15
15
|
serviceToken: certificateCreationLambdaArn,
|
|
16
16
|
properties: {
|
package/package.json
CHANGED
|
@@ -28,11 +28,11 @@ export class IxCertificate extends Construct {
|
|
|
28
28
|
const certificateCreationLambdaArn =
|
|
29
29
|
StringParameter.valueForStringParameter(
|
|
30
30
|
scope,
|
|
31
|
-
"/shared-services/acm/lambdaArn",
|
|
31
|
+
"/shared-services/acm/lambdaArn-v2",
|
|
32
32
|
);
|
|
33
33
|
const certificateCustomResource = new CustomResource(
|
|
34
34
|
scope,
|
|
35
|
-
"
|
|
35
|
+
"DomainCert-" + id,
|
|
36
36
|
{
|
|
37
37
|
resourceType: "Custom::CertIssuingLambda",
|
|
38
38
|
serviceToken: certificateCreationLambdaArn,
|