dcl-ops-lib 9.4.0 → 9.5.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.
@@ -30,6 +30,7 @@ export type StaticWebsite = {
30
30
  destroy?: boolean;
31
31
  priceClass?: "PriceClass_All" | "PriceClass_200" | "PriceClass_100";
32
32
  cachePolicyId?: Input<string>;
33
+ responseHeadersPolicyId?: Input<string>;
33
34
  objectOwnership?: string;
34
35
  overrideContentBucketACL?: string;
35
36
  };
package/buildStatic.js CHANGED
@@ -87,6 +87,7 @@ function buildStatic(staticSite) {
87
87
  queryString: false,
88
88
  },
89
89
  cachePolicyId: staticSite.cachePolicyId,
90
+ responseHeadersPolicyId: staticSite.responseHeadersPolicyId,
90
91
  minTtl: 0,
91
92
  defaultTtl: tenMinutes,
92
93
  maxTtl: aYear,
@@ -214,7 +214,7 @@ async function createFargateTask(serviceName, dockerImage, dockerListeningPort,
214
214
  securityGroups: [taskSecurityGroup.id, ...securityGroups],
215
215
  containerInfo: {
216
216
  name: serviceName,
217
- secrets: [],
217
+ secrets,
218
218
  environment,
219
219
  essential,
220
220
  image: dockerImage,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dcl-ops-lib",
3
- "version": "9.4.0",
3
+ "version": "9.5.1",
4
4
  "scripts": {
5
5
  "build": "tsc && cp bin/* . && node test.js",
6
6
  "test": "tsc -p tsconfig.test.json && ENVIRONMENT=dev node bin-test/rateLimiting.test.js",