@ossy/deployment-tools 0.0.18 → 0.0.20

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/dist/index.js CHANGED
@@ -28449,7 +28449,7 @@ class CaddyClient {
28449
28449
  http: {
28450
28450
  servers: {
28451
28451
  [this.serverName]: {
28452
- listen: [':443'],
28452
+ listen: [':80', ':443'],
28453
28453
  routes: [
28454
28454
  {
28455
28455
  match: [Matchers.host(`*.${environmentName}.${domain}`)],
@@ -28471,7 +28471,8 @@ class CaddyClient {
28471
28471
  dns:{
28472
28472
  provider:{
28473
28473
  'max_retries': 10,
28474
- name: 'route53'
28474
+ name: 'route53',
28475
+ 'aws_profile': 'ci-client'
28475
28476
  }
28476
28477
  }
28477
28478
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ossy/deployment-tools",
3
- "version": "0.0.18",
3
+ "version": "0.0.20",
4
4
  "description": "Collection of scripts and tools to aid deployment of containers and static files",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -49,7 +49,7 @@ export class CaddyClient {
49
49
  http: {
50
50
  servers: {
51
51
  [this.serverName]: {
52
- listen: [':443'],
52
+ listen: [':80', ':443'],
53
53
  routes: [
54
54
  {
55
55
  match: [Matchers.host(`*.${config.environmentName}.${config.domain}`)],
@@ -71,7 +71,8 @@ export class CaddyClient {
71
71
  dns:{
72
72
  provider:{
73
73
  'max_retries': 10,
74
- name: 'route53'
74
+ name: 'route53',
75
+ 'aws_profile': 'ci-client'
75
76
  }
76
77
  }
77
78
  },