8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8edf11f commit f48e6bdCopy full SHA for f48e6bd
localstack-core/localstack/services/apigateway/resource_providers/aws_apigateway_domainname.py
@@ -105,6 +105,12 @@ def create(
105
model["DistributionDomainName"] = result.get("distributionDomainName") or result.get(
106
"domainName"
107
)
108
+ model["RegionalDomainName"] = (
109
+ result.get("regionalDomainName") or model["DistributionDomainName"]
110
+ )
111
+ model["RegionalHostedZoneId"] = (
112
+ result.get("regionalHostedZoneId") or model["DistributionHostedZoneId"]
113
114
115
return ProgressEvent(
116
status=OperationStatus.SUCCESS,
0 commit comments