-
Notifications
You must be signed in to change notification settings - Fork 20
Return RegionalHostedZoneId from the cloudformation UI stack #378
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1109,8 +1109,15 @@ Outputs: | |
Condition: UseCustomDomain | ||
Description: | | ||
The endpoint associated with the custom domain name. | ||
Add an A record in your DNS for the PCUI custom domain name pointing to this endpoint. | ||
Add an A alias record in your DNS for the PCUI custom domain name pointing to this endpoint. | ||
https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-to-api-gateway.html#routing-to-api-gateway-config | ||
Value: !GetAtt ApiGatewayCustomDomain.RegionalDomainName | ||
CustomDomainRegionalHostedZoneId: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do you need this extra info to configured the DNS? |
||
Condition: UseCustomDomain | ||
Description: | | ||
The region-specific Amazon Route 53 Hosted Zone ID of the regional endpoint. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. May you please rephrase |
||
You need this while creating Route53 alias | ||
Value: !GetAtt ApiGatewayCustomDomain.RegionalHostedZoneId | ||
AppClientId: | ||
Description: The id of the Cognito app client | ||
Value: !Ref CognitoAppClient | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We usually do not expose URLs we are not in direct control of as they may change over time.
This URL is owned by the Route53 team, not us.
May you please remove it?
Thanks