Skip to content

Commit a5bde30

Browse files
committed
fix English README for cloudformation
1 parent ceb0959 commit a5bde30

File tree

3 files changed

+51
-30
lines changed

3 files changed

+51
-30
lines changed

Diff for: codedeploy/scripts/application_start.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pm2 start "yarn start" --name backend
88
fi
99

1010
if [[ "$DEPLOYMENT_GROUP_NAME" =~ ^event ]]; then
11-
cd /srv/demos/participation-cert-vci/ || exit
11+
cd /srv/demos/event-certificate-manager/ || exit
1212
pm2 start "yarn start" --name backend
1313
fi
1414

Diff for: demos/event-certificate-manager/aws/README.md

+29-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# VCI CloudFormation Template
22

3-
This repository contains an AWS CloudFormation template for deploying the Virtual Corporate Infrastructure (VCI).
3+
This repository contains an AWS CloudFormation template for deploying the Verifiable Credential Issuer (VCI).
44

55
## Template Overview
66

@@ -16,12 +16,12 @@ This template deploys the following resources:
1616

1717
## Parameters
1818

19-
| Parameter Name | Description | Required | Default Value |
20-
| ---------------- | ---------------------------- | -------- | --------------- |
21-
| `Domain` | Domain for VCI | Yes | None |
22-
| `VCISubdomain` | Subdomain for VCI | Yes | None |
23-
| `HostedZoneID` | HostedZoneID for Route53 | Yes | None |
24-
| `ACMARN` | ACM for VCI (Optional) | No | Empty String |
19+
| Parameter Name | Description | Required | Default Value |
20+
|----------------|--------------------------|----------|---------------|
21+
| `Domain` | Domain for VCI | Yes | None |
22+
| `VCISubdomain` | Subdomain for VCI | Yes | None |
23+
| `HostedZoneID` | HostedZoneID for Route53 | Yes | None |
24+
| `ACMARN` | ACM for VCI (Optional) | No | Empty String |
2525

2626
**Note**: All parameters except `ACMARN` are required.
2727

@@ -37,9 +37,30 @@ This template deploys the following resources:
3737
Use specific AWS CLI commands to create, update, and delete the CloudFormation stack. Here are examples:
3838

3939
1. Create the stack
40+
```shell
41+
aws cloudformation create-stack --stack-name <EventName> \
42+
--template-body file://path/to/template.yaml \
43+
--parameters ParameterKey=Domain,ParameterValue=<your-domain> \
44+
ParameterKey=VCISubdomain,ParameterValue=<your-subdomain> \
45+
ParameterKey=HostedZoneID,ParameterValue=<your-hostedzone-id> \
46+
ParameterKey=ACMARN,ParameterValue=<your-acm-arn-if-any> \
47+
--capabilities CAPABILITY_NAMED_IAM
48+
```
4049
2. Update the stack
50+
```shell
51+
aws cloudformation update-stack --stack-name <EventName> \
52+
--template-body file://path/to/template.yaml \
53+
--parameters ParameterKey=Domain,ParameterValue=<your-domain> \
54+
ParameterKey=VCISubdomain,ParameterValue=<your-subdomain> \
55+
ParameterKey=HostedZoneID,ParameterValue=<your-hostedzone-id> \
56+
ParameterKey=ACMARN,ParameterValue=<your-acm-arn-if-any> \
57+
--capabilities CAPABILITY_NAMED_IAM
58+
```
4159
3. Delete the stack
42-
60+
```shell
61+
aws cloudformation delete-stack --stack-name <EventName>
62+
```
63+
4364
### Deploying from the AWS Console
4465

4566
You can also deploy the CloudFormation template using the AWS Console.

Diff for: demos/event-certificate-manager/aws/READM_JP.md

+21-21
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# VCI CloudFormation Template
22

3-
このリポジトリには、VCI (Virtual Corporate Infrastructure) をデプロイするためのAWS CloudFormationテンプレートが含まれています。
3+
このリポジトリには、VCI (Verifiable Credential Issuer) をデプロイするためのAWS CloudFormationテンプレートが含まれています。
44

55
## テンプレートの概要
66

@@ -37,29 +37,29 @@
3737
CloudFormationスタックを作成、更新、削除するための具体的なAWS CLIコマンドを使用してください。以下は例です:
3838

3939
1. スタックの作成
40-
```shell
40+
```shell
4141
aws cloudformation create-stack --stack-name <EventName> \
42-
--template-body file://path/to/template.yaml \
43-
--parameters ParameterKey=Domain,ParameterValue=<your-domain> \
44-
ParameterKey=VCISubdomain,ParameterValue=<your-subdomain> \
45-
ParameterKey=HostedZoneID,ParameterValue=<your-hostedzone-id> \
46-
ParameterKey=ACMARN,ParameterValue=<your-acm-arn-if-any> \
47-
--capabilities CAPABILITY_NAMED_IAM
48-
```
42+
--template-body file://path/to/template.yaml \
43+
--parameters ParameterKey=Domain,ParameterValue=<your-domain> \
44+
ParameterKey=VCISubdomain,ParameterValue=<your-subdomain> \
45+
ParameterKey=HostedZoneID,ParameterValue=<your-hostedzone-id> \
46+
ParameterKey=ACMARN,ParameterValue=<your-acm-arn-if-any> \
47+
--capabilities CAPABILITY_NAMED_IAM
48+
```
4949
2. スタックの更新
50-
```shell
51-
aws cloudformation update-stack --stack-name <EventName> \
52-
--template-body file://path/to/template.yaml \
53-
--parameters ParameterKey=Domain,ParameterValue=<your-domain> \
54-
ParameterKey=VCISubdomain,ParameterValue=<your-subdomain> \
55-
ParameterKey=HostedZoneID,ParameterValue=<your-hostedzone-id> \
56-
ParameterKey=ACMARN,ParameterValue=<your-acm-arn-if-any> \
57-
--capabilities CAPABILITY_NAMED_IAM
58-
```
50+
```shell
51+
aws cloudformation update-stack --stack-name <EventName> \
52+
--template-body file://path/to/template.yaml \
53+
--parameters ParameterKey=Domain,ParameterValue=<your-domain> \
54+
ParameterKey=VCISubdomain,ParameterValue=<your-subdomain> \
55+
ParameterKey=HostedZoneID,ParameterValue=<your-hostedzone-id> \
56+
ParameterKey=ACMARN,ParameterValue=<your-acm-arn-if-any> \
57+
--capabilities CAPABILITY_NAMED_IAM
58+
```
5959
3. スタックの削除
60-
```shell
61-
aws cloudformation delete-stack --stack-name <EventName>
62-
```
60+
```shell
61+
aws cloudformation delete-stack --stack-name <EventName>
62+
```
6363
### AWSコンソールからのデプロイ
6464

6565
AWSコンソールを使用してCloudFormationテンプレートをデプロイすることもできます。

0 commit comments

Comments
 (0)