@codedazur/cdk-docker-cluster 0.5.0 → 0.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @codedazur/cdk-docker-cluster
2
2
 
3
+ ## 0.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`d9e51b0`](https://github.com/codedazur/toolkit/commit/d9e51b0e2fb36d64c641ae341124b0fb2bd298df) Thanks [@thijsdaniels](https://github.com/thijsdaniels)! - An unused certificate resource was removed.
8
+
9
+ - Updated dependencies [[`d9e51b0`](https://github.com/codedazur/toolkit/commit/d9e51b0e2fb36d64c641ae341124b0fb2bd298df)]:
10
+ - @codedazur/cdk-site-distribution@0.1.2
11
+
3
12
  ## 0.5.0
4
13
 
5
14
  ### Minor Changes
package/dist/index.js CHANGED
@@ -27,7 +27,6 @@ module.exports = __toCommonJS(src_exports);
27
27
  // src/constructs/DockerCluster.ts
28
28
  var import_cdk_site_distribution = require("@codedazur/cdk-site-distribution");
29
29
  var import_aws_cdk_lib = require("aws-cdk-lib");
30
- var import_aws_certificatemanager = require("aws-cdk-lib/aws-certificatemanager");
31
30
  var import_aws_cloudfront = require("aws-cdk-lib/aws-cloudfront");
32
31
  var import_aws_cloudfront_origins = require("aws-cdk-lib/aws-cloudfront-origins");
33
32
  var import_aws_ecr_assets = require("aws-cdk-lib/aws-ecr-assets");
@@ -73,10 +72,7 @@ var DockerCluster = class extends import_constructs.Construct {
73
72
  enable: true,
74
73
  rollback: true
75
74
  },
76
- publicLoadBalancer: false,
77
- certificate: new import_aws_certificatemanager.Certificate(this, "Certificate", {
78
- domainName: "example.com"
79
- })
75
+ publicLoadBalancer: false
80
76
  });
81
77
  if (typeof this.props.tasks === "object") {
82
78
  this.service.service.autoScaleTaskCount({
package/dist/index.mjs CHANGED
@@ -3,7 +3,6 @@ import {
3
3
  SiteDistribution
4
4
  } from "@codedazur/cdk-site-distribution";
5
5
  import { App } from "aws-cdk-lib";
6
- import { Certificate } from "aws-cdk-lib/aws-certificatemanager";
7
6
  import { OriginProtocolPolicy } from "aws-cdk-lib/aws-cloudfront";
8
7
  import { LoadBalancerV2Origin } from "aws-cdk-lib/aws-cloudfront-origins";
9
8
  import { Platform } from "aws-cdk-lib/aws-ecr-assets";
@@ -51,10 +50,7 @@ var DockerCluster = class extends Construct {
51
50
  enable: true,
52
51
  rollback: true
53
52
  },
54
- publicLoadBalancer: false,
55
- certificate: new Certificate(this, "Certificate", {
56
- domainName: "example.com"
57
- })
53
+ publicLoadBalancer: false
58
54
  });
59
55
  if (typeof this.props.tasks === "object") {
60
56
  this.service.service.autoScaleTaskCount({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codedazur/cdk-docker-cluster",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "main": ".dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -27,7 +27,7 @@
27
27
  "constructs": ">=10"
28
28
  },
29
29
  "dependencies": {
30
- "@codedazur/cdk-site-distribution": "^0.1.0"
30
+ "@codedazur/cdk-site-distribution": "^0.1.2"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/node": "^20.14.9",