Skip to content

Commit f7fe163

Browse files
committed
updated the git urls as per the new repository name
1 parent 25465ae commit f7fe163

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ assignees: ""
2222

2323
- [ ] Version: [e.g. v1.0.0]
2424

25-
To get the version of the solution, you can look at the description of the created CloudFormation stack. For example, "_(SO0009) - The AWS CloudFormation template for deployment of the aws-centralized-logging. Version v1.0.0_". You can also find the version from [releases](https://github.com/aws-solutions/workspaces-cost-optimizer/releases)
25+
To get the version of the solution, you can look at the description of the created CloudFormation stack. For example, "_(SO0009) - The AWS CloudFormation template for deployment of the aws-centralized-logging. Version v1.0.0_". You can also find the version from [releases](https://github.com/aws-solutions/cost-optimizer-for-amazon-workspaces/releases)
2626

2727
- [ ] Region: [e.g. us-east-1]
2828
- [ ] Was the solution modified from the version published on this repository?

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ information to effectively respond to your bug report or contribution.
1111

1212
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
1313

14-
When filing an issue, please check [existing open](https://github.com/awslabs/workspaces-cost-optimizer/issues), or [recently closed](https://github.com/awslabs/workspaces-cost-optimizer/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
14+
When filing an issue, please check [existing open](https://github.com/aws-solutions/cost-optimizer-for-amazon-workspaces/issues), or [recently closed](https://github.com/aws-solutions/cost-optimizer-for-amazon-workspaces/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
1515
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
1616

1717
* A reproducible test case or series of steps
@@ -41,7 +41,7 @@ GitHub provides additional document on [forking a repository](https://help.githu
4141

4242

4343
## Finding contributions to work on
44-
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/awslabs/workspaces-cost-optimizer/labels/help%20wanted) issues is a great place to start.
44+
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/aws-solutions/cost-optimizer-for-amazon-workspaces/labels/help%20wanted) issues is a great place to start.
4545

4646

4747
## Code of Conduct
@@ -56,6 +56,6 @@ If you discover a potential security issue in this project we ask that you notif
5656

5757
## Licensing
5858

59-
See the [LICENSE](https://github.com/awslabs/workspaces-cost-optimizer/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
59+
See the [LICENSE](https://github.com/aws-solutions/cost-optimizer-for-amazon-workspaces/blob/main/LICENSE.txt) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
6060

6161
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ Deploy via [CDKv2](https://docs.aws.amazon.com/cdk/v2/guide/home.html) with [npm
3636

3737
[Preconfigure aws profile](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html)
3838
```
39-
git clone git@github.com:aws-solutions/workspaces-cost-optimizer.git
39+
git clone git@github.com:aws-solutions/cost-optimizer-for-amazon-workspaces.git
40+
4041
4142
cd source
4243
@@ -63,7 +64,7 @@ For the full solution overview visit [WorkSpaces Cost Optimizer on AWS](https://
6364
Clone the repository
6465

6566
```
66-
git clone git@github.com:aws-solutions/workspaces-cost-optimizer.git
67+
git clone git@github.com:aws-solutions/cost-optimizer-for-amazon-workspaces.git
6768
```
6869

6970
Create a distribution S3 bucket with the format `MY-BUCKET-<aws_region>`. The solution's cdk will expect the
@@ -95,7 +96,7 @@ chmod +x ./build-s3-dist.sh && ./build-s3-dist.sh $TEMPLATE_OUTPUT_BUCKET $DIST_
9596
Upload the artifacts.
9697

9798
```
98-
aws s3 cp ./dist/ s3://$BUCKET_NAME-[region]/workspaces-cost-optimizer/$VERSION --recursive
99+
aws s3 cp ./dist/ s3://$BUCKET_NAME-[region]/cost-optimizer-for-amazon-workspaces/$VERSION --recursive
99100
```
100101

101102
You should now have everything in place to run cdk or CloudFormation template(either from your bucket or from `./deployment/dist/`).

source/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "Apache-2.0",
66
"repository": {
77
"type": "git",
8-
"url": "https://github.com/aws-solutions/workspaces-cost-optimizer"
8+
"url": "https://github.com/aws-solutions/cost-optimizer-for-amazon-workspaces"
99
},
1010
"scripts": {
1111
"cleanup": "tsc --build ./ --clean && rm -rf node_modules && rm -f package-lock.json",
@@ -15,10 +15,10 @@
1515
"test": "jest --coverage",
1616
"license-report": "license-report --output=csv --delimiter=' under ' --fields=name --fields=licenseType",
1717
"cdk": "cdk",
18-
"bootstrap": "SOLUTION_VERSION=v2.6.0 SOLUTION_NAME=workspaces-cost-optimizer SOLUTION_TRADEMARKEDNAME=cost-optimizer-for-amazon-workspaces cdk bootstrap",
19-
"deploy": "SOLUTION_VERSION=v2.6.0 SOLUTION_NAME=workspaces-cost-optimizer SOLUTION_TRADEMARKEDNAME=cost-optimizer-for-amazon-workspaces cdk deploy cost-optimizer-for-amazon-workspaces",
20-
"deploySpoke": "SOLUTION_VERSION=v2.6.0 SOLUTION_NAME=workspaces-cost-optimizer SOLUTION_TRADEMARKEDNAME=cost-optimizer-for-amazon-workspaces cdk deploy cost-optimizer-for-amazon-workspaces-spoke",
21-
"synth": "SOLUTION_VERSION=v2.6.0 SOLUTION_NAME=workspaces-cost-optimizer SOLUTION_TRADEMARKEDNAME=cost-optimizer-for-amazon-workspaces DIST_OUTPUT_BUCKET=solutions-reference cdk synth"
18+
"bootstrap": "SOLUTION_VERSION=v2.6.0 SOLUTION_NAME=cost-optimizer-for-amazon-workspaces SOLUTION_TRADEMARKEDNAME=cost-optimizer-for-amazon-workspaces cdk bootstrap",
19+
"deploy": "SOLUTION_VERSION=v2.6.0 SOLUTION_NAME=cost-optimizer-for-amazon-workspaces SOLUTION_TRADEMARKEDNAME=cost-optimizer-for-amazon-workspaces cdk deploy cost-optimizer-for-amazon-workspaces",
20+
"deploySpoke": "SOLUTION_VERSION=v2.6.0 SOLUTION_NAME=cost-optimizer-for-amazon-workspaces SOLUTION_TRADEMARKEDNAME=cost-optimizer-for-amazon-workspaces cdk deploy cost-optimizer-for-amazon-workspaces-spoke",
21+
"synth": "SOLUTION_VERSION=v2.6.0 SOLUTION_NAME=cost-optimizer-for-amazon-workspaces SOLUTION_TRADEMARKEDNAME=cost-optimizer-for-amazon-workspaces DIST_OUTPUT_BUCKET=solutions-reference cdk synth"
2222
},
2323
"devDependencies": {
2424
"@aws-cdk/assert": "2.68.0",

0 commit comments

Comments
 (0)