@infoxchange/make-it-so 2.10.0-internal-testing-vdt-199-add-oidc-auth-2.1 → 2.10.0-internal-testing-vdt-199-add-oidc-auth-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.
@@ -174,7 +174,7 @@ export class CloudFrontOidcAuth extends Construct {
174
174
  origin: new CloudFrontOrigins.HttpOrigin(CDK.Fn.parseDomainName(authRouteFunctionUrl.url)),
175
175
  allowedMethods: CloudFront.AllowedMethods.ALLOW_ALL,
176
176
  cachePolicy: new CloudFront.CachePolicy(scope, `${this.id}AllowAllCookiesPolicy`, {
177
- cachePolicyName: "AllowAllCookiesPolicy",
177
+ cachePolicyName: `${this.id}-AllowAllCookiesPolicy`,
178
178
  comment: "Cache policy that forwards all cookies",
179
179
  defaultTtl: CDK.Duration.seconds(1),
180
180
  minTtl: CDK.Duration.seconds(1),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infoxchange/make-it-so",
3
- "version": "2.10.0-internal-testing-vdt-199-add-oidc-auth-2.1",
3
+ "version": "2.10.0-internal-testing-vdt-199-add-oidc-auth-3.1",
4
4
  "description": "Makes deploying services to IX infra easy",
5
5
  "repository": "github:infoxchange/make-it-so",
6
6
  "type": "module",
@@ -267,7 +267,7 @@ export class CloudFrontOidcAuth extends Construct {
267
267
  scope,
268
268
  `${this.id}AllowAllCookiesPolicy`,
269
269
  {
270
- cachePolicyName: "AllowAllCookiesPolicy",
270
+ cachePolicyName: `${this.id}-AllowAllCookiesPolicy`,
271
271
  comment: "Cache policy that forwards all cookies",
272
272
  defaultTtl: CDK.Duration.seconds(1),
273
273
  minTtl: CDK.Duration.seconds(1),