You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Custom Domain] Improve user experience to configure custom domains in PCUI.
In particular, we added the following new optional parameters to the PCUI stack:
1. CustomDomain
2. CustomDomainCertificateArn
3. CognitoCustomDomain
4. CognitoCustomDomainCertificateArn
and the following new outputs when a custom domain is set:
1. CustomDomainEndpoint
2. CognitoCustomDomainEndpoint
Copy file name to clipboardExpand all lines: infrastructure/parallelcluster-ui.yaml
+50Lines changed: 50 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,18 @@ Parameters:
66
66
Type: String
67
67
Description: (Optional) Custom domain name. If omitted, the default domain name will be used.
68
68
Default: ''
69
+
CustomDomainCertificateArn:
70
+
Type: String
71
+
Description: '(Optional) ARN of the ACM Certificate issued for the custom domain. This is required only if `CustomDomain` is specified.'
72
+
Default: ''
73
+
CognitoCustomDomain:
74
+
Type: String
75
+
Description: '(Optional) Custom domain name for Cognito. If omitted, the default Cognito domain name will be used.'
76
+
Default: ''
77
+
CognitoCustomDomainCertificateArn:
78
+
Type: String
79
+
Description: '(Optional) ARN of the ACM Certificate issued for the Cognito custom domain. This is required only if `CognitoCustomDomain` is specified.'
0 commit comments