Skip to content

Commit 0163081

Browse files
authored
docs: Fix a few more links (#52)
- Direct traffic to app.cloudcraft.co subdomain where applicable - Fix shared blueprint test link - Minor grammar fixes
1 parent d590e01 commit 0163081

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

‎.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ about: Create a report to help us improve
88
A clear and concise description of what the bug is.
99

1010
<!--
11-
NOTE: If you are experiencing a build failure, please provide link to the blueprint which you can get from cloudcraft.co web-site when you click "Export" -> "Get shareable link".
11+
NOTE: If you are experiencing a build failure, please provide link to the blueprint which you can get from the [Cloudcraft](https://www.cloudcraft.co) web-site when you click "Export" -> "Get shareable link".
1212
1313
If you don't want to share a link to your blueprint publicly you can [encrypt it using keybase.io](https://keybase.io/encrypt) for [antonbabenko](https://keybase.io/antonbabenko) as a recipient and paste it here. Alternatively, you can share the link with [antonbabenko](https://keybase.io/antonbabenko) using [Keybase Chat](https://keybase.io/docs/extension).
1414
-->

‎README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Code in this repository is used for generating infrastructure as Terraform confi
1212

1313
## How can I try this?
1414

15-
1. Sign up for free account to [Cloudcraft.co](https://www.cloudcraft.co/app).
15+
1. Sign up for a free account with [Cloudcraft](https://app.cloudcraft.co/signup).
1616
1. Draw AWS architecture in web-browser (you can import live AWS resources, too).
1717
1. Click "Export" and "Terraform code export" at the top right side.
1818
1. Download archive and extract it locally.

‎handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def load_data(event):
4343
if 403 == r.status_code:
4444
raise ValueError("Sharing has been disabled for this blueprint." +
4545
" You have to enable it by clicking 'Export' -> 'Get shareable link'" +
46-
" on https://www.cloudcraft.co/app/", 403)
46+
" on https://app.cloudcraft.co", 403)
4747

4848
elif r.status_code >= 500:
4949
raise ValueError("Something went wrong on cloudcraft side. Can't fetch specified blueprint." +

‎package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "modules.tf-lambda",
33
"version": "2.0.0",
4-
"description": "From visual diagrams created with Cloudcraft.co to infrastructure as code using Terraform and Terragrunt",
4+
"description": "From visual diagrams created with Cloudcraft to infrastructure as code using Terraform and Terragrunt",
55
"main": "index.js",
66
"private": true,
77
"scripts": {

‎templates/root/template/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Infrastructure code for "{{ cookiecutter.source_name }}"
22

3-
This repository contains infrastructure as Terraform configurations which were automatically generated from blueprint created using [cloudcraft.co](https://cloudcraft.co/app).
3+
This repository contains infrastructure as Terraform configurations which were automatically generated from blueprint created using [Cloudcraft](https://www.cloudcraft.co).
44

55
[Terragrunt](https://terragrunt.gruntwork.io/) is used to work with Terraform configurations which allows to orchestrate dependent layers, update arguments dynamically and keep configurations [DRY](https://en.wikipedia.org/wiki/Don%27t_repeat_yourself).
66

‎test_fixtures/input_cloudcraft.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"queryStringParameters":
33
{
4-
"cloudcraft": "https://cloudcraft.co/api/blueprint/b2eda0eb-21b2-45d8-93d5-c0b4906eb69e?key=XlAaasYL4pOa5f-Wzkt5CQ"
4+
"cloudcraft": "https://app.cloudcraft.co/api/blueprint/b2eda0eb-21b2-45d8-93d5-c0b4906eb69e?key=XlAaasYL4pOa5f-Wzkt5CQ"
55
}
66
}

0 commit comments

Comments
 (0)