diff --git a/README.md b/README.md index 0027393..d0820f1 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A Node.js module to translate Docker Compose files into AWS CloudFormation and m First, install the module and its dependencies: ```sh -npm i @deploymy/docker-to-iac +npm i @deploystack/docker-to-iac ``` ## Usage @@ -15,7 +15,7 @@ npm i @deploymy/docker-to-iac ### Translating Docker Compose to AWS CloudFormation ```typescript -import { translate } from '@deploymy/docker-to-iac'; +import { translate } from '@deploystack/docker-to-iac'; import { readFileSync, writeFileSync } from 'fs'; // Read Docker Compose file content as plain text @@ -30,7 +30,7 @@ writeFileSync('output-aws.json', JSON.stringify(translatedConfig, null, 2)); ## Documentation -Please visit [docs.deploy.my](https://docs.deploy.my/docker-to-iac) to read full documentation. +Please visit [docs.deploystack.io](https://docs.deploystack.io/docker-to-iac) to read full documentation. ## License diff --git a/package-lock.json b/package-lock.json index 7f03194..e055442 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "@deploymy/docker-to-iac", + "name": "@deploystack/docker-to-iac", "version": "0.0.0-development", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "@deploymy/docker-to-iac", + "name": "@deploystack/docker-to-iac", "version": "0.0.0-development", "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index 95d175e..67ced96 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@deploymy/docker-to-iac", + "name": "@deploystack/docker-to-iac", "version": "0.0.0-development", "main": "dist/src/index.js", "scripts": { @@ -10,8 +10,8 @@ }, "author": { "name": "Piotr Hajdas", - "email": "hello@deploy.my", - "url": "https://deploy.my" + "email": "hello@deploystack.io", + "url": "https://deploystack.io" }, "files": [ "dist", @@ -21,9 +21,9 @@ "access": "public" }, "bugs": { - "url": "https://github.com/deploymy/docker-to-iac/issues" + "url": "https://github.com/deploystackio/docker-to-iac/issues" }, - "homepage": "https://github.com/deploymy/docker-to-iac#readme", + "homepage": "https://github.com/deploystackio/docker-to-iac#readme", "keywords": [ "Apache-2.0", "Infrastructure as Code", diff --git a/src/parsers/aws-cloudformation.ts b/src/parsers/aws-cloudformation.ts index 4abd885..53c6a8a 100644 --- a/src/parsers/aws-cloudformation.ts +++ b/src/parsers/aws-cloudformation.ts @@ -30,7 +30,7 @@ class CloudFormationParser extends BaseParser { parameters['SubnetB'] = { Type: 'AWS::EC2::Subnet::Id' }; parameters['ServiceName'] = { Type: 'String', - Default: 'DeployMyService' + Default: 'DeployStackService' }; resources['Cluster'] = { Type: 'AWS::ECS::Cluster',