From 812d0184d9782c54b0320c035da7125ce44fc3b3 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 5 Mar 2018 13:09:19 -0800 Subject: [PATCH] ApiGateway::DomainName CertificateArn fix - Remove CertificateArn requirement from ApiGateway:DomainName to deploy ApiGateway REGION deployment w/ssl --- troposphere/apigateway.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/troposphere/apigateway.py b/troposphere/apigateway.py index dd20853d2..76fd2b909 100644 --- a/troposphere/apigateway.py +++ b/troposphere/apigateway.py @@ -174,7 +174,7 @@ class DomainName(AWSObject): resource_type = "AWS::ApiGateway::DomainName" props = { - "CertificateArn": (basestring, True), + "CertificateArn": (basestring, False), "DomainName": (basestring, True), "EndpointConfiguration": (EndpointConfiguration, False), "RegionalCertificateArn": (basestring, False),