@ossy/deployment-tools 0.0.21 → 0.0.23

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ossy/deployment-tools",
3
- "version": "0.0.21",
3
+ "version": "0.0.23",
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",
@@ -10,7 +10,7 @@ export class AwsCredentialsClient {
10
10
  .then(webIdentityToken => stsClient.send(new AssumeRoleWithWebIdentityCommand({
11
11
  RoleArn: `arn:aws:iam::${awsAccountId}:role/${roleToAssume}`,
12
12
  RoleSessionName: 'GitHubActions',
13
- DurationSeconds: 5 * 60,
13
+ DurationSeconds: 15 * 60,
14
14
  WebIdentityToken: webIdentityToken
15
15
  })))
16
16
  .then(responseData => ({
@@ -1,7 +1,7 @@
1
1
  import { resolve } from 'path'
2
2
  import { readFileSync } from 'fs'
3
3
  import { AwsCredentialsClient } from './aws-credentials-client.js'
4
- import { DeploymentQueueClient } from './deployment-manager-client.js'
4
+ import { DeploymentQueueClient } from './deployment-queue-client.js'
5
5
 
6
6
  export class ContainerManagerClient {
7
7
 
@@ -1,7 +1,7 @@
1
1
  import express from 'express'
2
2
  import { CaddyClient } from './caddy-client.js'
3
3
  import { DockerClient } from './docker-client.js'
4
- import { DeploymentQueueClient } from './deployment-manager-client.js'
4
+ import { DeploymentQueueClient } from './deployment-queue-client.js'
5
5
  import * as config from './config.js'
6
6
 
7
7
  export class ContainerManagerServer {