stacktape 3.3.0 → 3.3.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.
- package/package.json +1 -1
- package/plain.d.ts +44 -0
package/package.json
CHANGED
package/plain.d.ts
CHANGED
|
@@ -9707,6 +9707,7 @@ export interface UserAuthPoolProps {
|
|
|
9707
9707
|
* Stacktape does this by creating a `WebACLAssociation` between the user pool and the referenced firewall.
|
|
9708
9708
|
*/
|
|
9709
9709
|
useFirewall?: string;
|
|
9710
|
+
customDomain?: UserPoolCustomDomainConfiguration;
|
|
9710
9711
|
/**
|
|
9711
9712
|
* #### Generate a client secret
|
|
9712
9713
|
*
|
|
@@ -10130,6 +10131,49 @@ export interface IdentityProvider {
|
|
|
10130
10131
|
* In most cases you don't need to set this – Stacktape configures sensible defaults for common providers.
|
|
10131
10132
|
*/
|
|
10132
10133
|
export interface RecordStringAny {}
|
|
10134
|
+
/**
|
|
10135
|
+
* #### Custom Domain
|
|
10136
|
+
*
|
|
10137
|
+
* ---
|
|
10138
|
+
*
|
|
10139
|
+
* Configures a custom domain for the Cognito Hosted UI (e.g., `auth.example.com`).
|
|
10140
|
+
*
|
|
10141
|
+
* When configured, Cognito creates a CloudFront distribution to serve your custom domain.
|
|
10142
|
+
* Stacktape automatically:
|
|
10143
|
+
* - Configures the user pool domain with your custom domain and an ACM certificate from us-east-1
|
|
10144
|
+
* - Creates a DNS record pointing to the CloudFront distribution
|
|
10145
|
+
*
|
|
10146
|
+
* The domain must be registered and verified in your Stacktape account with a valid ACM certificate in us-east-1.
|
|
10147
|
+
*/
|
|
10148
|
+
export interface UserPoolCustomDomainConfiguration {
|
|
10149
|
+
/**
|
|
10150
|
+
* #### Domain Name
|
|
10151
|
+
*
|
|
10152
|
+
* ---
|
|
10153
|
+
*
|
|
10154
|
+
* Fully qualified domain name for the Cognito Hosted UI (e.g., `auth.example.com`).
|
|
10155
|
+
*/
|
|
10156
|
+
domainName: string;
|
|
10157
|
+
/**
|
|
10158
|
+
* #### Custom Certificate ARN
|
|
10159
|
+
*
|
|
10160
|
+
* ---
|
|
10161
|
+
*
|
|
10162
|
+
* ARN of an ACM certificate in **us-east-1** to use for this domain.
|
|
10163
|
+
* By default, Stacktape uses the certificate associated with your domain in us-east-1.
|
|
10164
|
+
*
|
|
10165
|
+
* The certificate must be in us-east-1 because Cognito uses CloudFront for custom domains.
|
|
10166
|
+
*/
|
|
10167
|
+
customCertificateArn?: string;
|
|
10168
|
+
/**
|
|
10169
|
+
* #### Disable DNS Record Creation
|
|
10170
|
+
*
|
|
10171
|
+
* ---
|
|
10172
|
+
*
|
|
10173
|
+
* If `true`, Stacktape will not create a DNS record for this domain.
|
|
10174
|
+
*/
|
|
10175
|
+
disableDnsRecordCreation?: boolean;
|
|
10176
|
+
}
|
|
10133
10177
|
/**
|
|
10134
10178
|
* #### Event Bus
|
|
10135
10179
|
*
|