diff --git a/content/intermediate/templates/conditions/index.ja.md b/content/intermediate/templates/conditions/index.ja.md index d83a51264..50d57ee1f 100644 --- a/content/intermediate/templates/conditions/index.ja.md +++ b/content/intermediate/templates/conditions/index.ja.md @@ -110,8 +110,8 @@ Resources: スタックを作成する時に、`test` を `EnvType` の値として渡すと、CloudFormation によって EC2 インスタンスリソースのみがプロビジョニングされることがわかります。更新したテンプレートを保存します。次に、AWS CloudFormation [コンソール](https://console.aws.amazon.com/cloudformation) に移動し、スタックを作成します。 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. **Cloud9 ターミナル** で `code/workspace/conditions` ディレクトリに移動します。 +::::tab{id="code-editor" label="Code Editor"} +1. **Code Editor ターミナル** で `code/workspace/conditions` ディレクトリに移動します。 :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/conditions ::: @@ -147,8 +147,8 @@ aws cloudformation create-stack --stack-name cfn-workshop-condition-test \ 次のステップでは、同じテンプレートを使用して新しいスタックを作成します。今回は、`envType` パラメータの値として `prod` を渡し、`Volume` と `MountPoint` リソースもプロビジョニングされることを確認します。AWS CloudFormation [コンソール](https://console.aws.amazon.com/cloudformation)に移動し、既存のテンプレートを使用してスタックを作成します。 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. **Cloud9 ターミナル** で `code/workspace/conditions` ディレクトリに移動します。 +::::tab{id="code-editor" label="Code Editor"} +1. **Code Editor ターミナル** で `code/workspace/conditions` ディレクトリに移動します。 :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/conditions ::: @@ -233,8 +233,8 @@ Resources: このセクションでは、`EnvType` パラメータの値として `test` を指定、EC2 インスタンスのタイプが `t2.micro` であることを確認します。AWS CloudFormation [コンソール](https://console.aws.amazon.com/cloudformation)に移動し、次のテンプレートを使用してスタックを作成します。 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. **Cloud9 ターミナル** で `code/workspace/conditions` ディレクトリに移動します。 +::::tab{id="code-editor" label="Code Editor"} +1. **Code Editor ターミナル** で `code/workspace/conditions` ディレクトリに移動します。 :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/conditions ::: @@ -299,8 +299,8 @@ Outputs: 次に、AWS CloudFormation [コンソール](https://console.aws.amazon.com/cloudformation)に移動して、`cfn-workshop-condition-prod` スタックの更新を選択します。 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. **Cloud9 ターミナル** で `code/workspace/conditions` ディレクトリに移動します。 +::::tab{id="code-editor" label="Code Editor"} +1. **Code Editor ターミナル** で `code/workspace/conditions` ディレクトリに移動します。 :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/conditions ::: diff --git a/content/intermediate/templates/conditions/index.md b/content/intermediate/templates/conditions/index.md index eaa2f11a5..c1659f599 100644 --- a/content/intermediate/templates/conditions/index.md +++ b/content/intermediate/templates/conditions/index.md @@ -110,8 +110,8 @@ Let’s deploy the solution! When you create the stack, you will pass `test` as the value for `EnvType`, and you will observe only an EC2 instance resource will be provisioned by CloudFormation. Save the template you have updated with content above; next, navigate to the AWS CloudFormation [console](https://console.aws.amazon.com/cloudformation), and choose to create a stack using this template: :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. In the **Cloud9 terminal** navigate to `code/workspace/conditions`: +::::tab{id="code-editor" label="Code Editor"} +1. In the **Code Editor terminal** navigate to `code/workspace/conditions`: :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/conditions ::: @@ -146,8 +146,8 @@ Once the stack is in the `CREATE_COMPLETE` status, navigate to the **Resources** In the next step, you will create a new stack with the same template. This time, you will pass `prod` as the value for the `EnvType` parameter, and verify that you will provision, with CloudFormation, your `Volume` and `MountPoint` resources as well. Navigate to the AWS CloudFormation [console](https://console.aws.amazon.com/cloudformation), and choose to create a stack using your existing template: :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. In the **Cloud9 terminal** navigate to `code/workspace/conditions`: +::::tab{id="code-editor" label="Code Editor"} +1. In the **Code Editor terminal** navigate to `code/workspace/conditions`: :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/conditions ::: @@ -232,8 +232,8 @@ Time to deploy your resources! In this section, you will pass `test` as the value for the `EnvType` parameter, and verify the type of your EC2 instance will be `t2.micro`. Navigate to the AWS CloudFormation [console](https://console.aws.amazon.com/cloudformation), and choose to create a stack using this template: :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. In the **Cloud9 terminal** navigate to `code/workspace/conditions`: +::::tab{id="code-editor" label="Code Editor"} +1. In the **Code Editor terminal** navigate to `code/workspace/conditions`: :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/conditions ::: @@ -298,8 +298,8 @@ Outputs: Next, navigate to the AWS CloudFormation [console](https://console.aws.amazon.com/cloudformation), and choose to update your `cfn-workshop-condition-prod` stack: :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. In the **Cloud9 terminal** navigate to `code/workspace/conditions`: +::::tab{id="code-editor" label="Code Editor"} +1. In the **Code Editor terminal** navigate to `code/workspace/conditions`: :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/conditions ::: diff --git a/content/intermediate/templates/cross-stacks/index.ja.md b/content/intermediate/templates/cross-stacks/index.ja.md index 6fc6b7213..ab48fba7d 100644 --- a/content/intermediate/templates/cross-stacks/index.ja.md +++ b/content/intermediate/templates/cross-stacks/index.ja.md @@ -70,8 +70,8 @@ Outputs: ##### 2. VPC スタックのデプロイ :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. **Cloud9 ターミナル** で `cfn101-workshop/code/workspace/cross-stacks` ディレクトリに移動します。 +::::tab{id="code-editor" label="Code Editor"} +1. **Code Editor ターミナル** で `cfn101-workshop/code/workspace/cross-stacks` ディレクトリに移動します。 1. **スタックを作成** は、次の AWS CLI コマンドを使用して行います。このテンプレートでは、 `AvailabilityZones` パラメータの値を指定する必要があります。たとえば、 `us-east-1a` と `us-east-1b` は以下で使用されます。利用しているリージョンの 2 つのアベイラビリティーゾーンを選択してください。 :::code{language=shell showLineNumbers=false showCopyAction=true} aws cloudformation create-stack \ @@ -113,7 +113,7 @@ aws cloudformation wait stack-create-complete \ ##### 2. IAM スタックのデプロイ :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 1. 次の AWS CLI コマンドを使用して、 **スタックを作成** してみましょう。このテンプレートでは、IAM リソースを作成するための `CAPABILITY_IAM` 機能を指定する必要があります。 :::code{language=shell showLineNumbers=false showCopyAction=true} aws cloudformation create-stack \ @@ -216,7 +216,7 @@ WebServerSecurityGroup: ##### 5. EC2 スタックのデプロイ :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 1. 次の AWS CLI コマンドを使用して、 **スタックを作成** してみましょう。このテンプレートでは、IAM リソースを作成するための `CAPABILITY_IAM` 機能を指定する必要があります。 :::code{language=shell showLineNumbers=false showCopyAction=true} aws cloudformation create-stack \ @@ -264,7 +264,7 @@ Session Manager を使用してインスタンスにログインできること ![delete-export-before-import.png](/static/intermediate/templates/cross-stacks/delete-export-before-import.ja.png) :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 1. **スタックを削除** するために次の AWS CLI コマンドを実行してください :::code{language=shell showLineNumbers=false showCopyAction=true} aws cloudformation delete-stack \ diff --git a/content/intermediate/templates/cross-stacks/index.md b/content/intermediate/templates/cross-stacks/index.md index d08c61cef..b27f36454 100644 --- a/content/intermediate/templates/cross-stacks/index.md +++ b/content/intermediate/templates/cross-stacks/index.md @@ -69,8 +69,8 @@ Outputs: ##### 2. Deploy the VPC Stack :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. In the **Cloud9 terminal** navigate to `cfn101-workshop/code/workspace/cross-stacks`. +::::tab{id="code-editor" label="Code Editor"} +1. In the **Code Editor terminal** navigate to `cfn101-workshop/code/workspace/cross-stacks`. 1. **Create Stack** by using the following AWS CLI command. The template requires you provide the values for `AvailabilityZones` parameter, For example `us-east-1a` and `us-east-1b` are used below. Please select 2 Availability Zone based on your region. :::code{language=shell showLineNumbers=false showCopyAction=true} aws cloudformation create-stack \ @@ -113,7 +113,7 @@ aws cloudformation wait stack-create-complete \ ##### 2. Deploy the IAM Stack :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 1. Let's **Create Stack** by using the following AWS CLI command. The template requires you to specify `CAPABILITY_IAM` capability for creating IAM resources. :::code{language=shell showLineNumbers=false showCopyAction=true} aws cloudformation create-stack \ @@ -214,7 +214,7 @@ WebServerSecurityGroup: ##### 5. Deploy the EC2 Stack :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 1. Let's **Create Stack** by using the following AWS CLI command. The template requires you to specify `CAPABILITY_IAM` capability for creating IAM resources. :::code{language=shell showLineNumbers=false showCopyAction=true} aws cloudformation create-stack \ @@ -262,7 +262,7 @@ For example, you can not delete the **VPC stack** before you delete **EC2 stack* ![delete-export-before-import.png](/static/intermediate/templates/cross-stacks/delete-export-before-import.png) :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 1. **Delete Stack** by running the following AWS CLI command :::code{language=shell showLineNumbers=false showCopyAction=true} aws cloudformation delete-stack \ diff --git a/content/intermediate/templates/dynamic-references/index.ja.md b/content/intermediate/templates/dynamic-references/index.ja.md index 99703f453..976fe1a9e 100644 --- a/content/intermediate/templates/dynamic-references/index.ja.md +++ b/content/intermediate/templates/dynamic-references/index.ja.md @@ -76,8 +76,8 @@ aws ssm put-parameter \ 5. いよいよスタックを作成しましょう! 以下の手順に従ってください。 :::::tabs{variant="container"} - ::::tab{id="cloud9" label="Cloud9"} - 1. **Cloud9 ターミナル** で `code/workspace/dynamic-references` ディレクトリに移動します + ::::tab{id="code-editor" label="Code Editor"} + 1. **Code Editor ターミナル** で `code/workspace/dynamic-references` ディレクトリに移動します :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/dynamic-references ::: @@ -148,8 +148,8 @@ aws ec2 describe-instances \ ::: 2. データベーススタックをデプロイするには、以下の手順に従います。 :::::tabs{variant="container"} - ::::tab{id="cloud9" label="Cloud9"} - 1. **Cloud9 ターミナル** で `code/workspace/dynamic-references` ディレクトリに移動します。 + ::::tab{id="code-editor" label="Code Editor"} + 1. **Code Editor ターミナル** で `code/workspace/dynamic-references` ディレクトリに移動します。 :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/dynamic-references ::: @@ -196,8 +196,8 @@ aws ec2 describe-instances \ ::: 1. Lambda スタックをデプロイするには、以下の手順に従います。 :::::tabs{variant="container"} - ::::tab{id="cloud9" label="Cloud9"} - 1. **Cloud9 ターミナル** で `code/workspace/dynamic-references` ディレクトリに移動します。 + ::::tab{id="code-editor" label="Code Editor"} + 1. **Code Editor ターミナル** で `code/workspace/dynamic-references` ディレクトリに移動します。 :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/dynamic-references ::: diff --git a/content/intermediate/templates/dynamic-references/index.md b/content/intermediate/templates/dynamic-references/index.md index a159f283f..74ac37651 100644 --- a/content/intermediate/templates/dynamic-references/index.md +++ b/content/intermediate/templates/dynamic-references/index.md @@ -75,8 +75,8 @@ With the dynamic reference above, you describe the intent of resolving the `LATE 5. It’s now time to create your stack! Follow steps below: :::::tabs{variant="container"} - ::::tab{id="cloud9" label="Cloud9"} - 1. In the **Cloud9 terminal** navigate to `code/workspace/dynamic-references`: + ::::tab{id="code-editor" label="Code Editor"} + 1. In the **Code Editor terminal** navigate to `code/workspace/dynamic-references`: :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/dynamic-references ::: @@ -145,8 +145,8 @@ Let’s get started! Choose to follow steps shown next: ::: 2. To deploy the Database stack, follow the steps below: :::::tabs{variant="container"} - ::::tab{id="cloud9" label="Cloud9"} - 1. In the **Cloud9 terminal** navigate to `code/workspace/dynamic-references`: + ::::tab{id="code-editor" label="Code Editor"} + 1. In the **Code Editor terminal** navigate to `code/workspace/dynamic-references`: :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/dynamic-references ::: @@ -193,8 +193,8 @@ Let’s get started! Choose to follow steps shown next: ::: 4. To Deploy the Lambda stack, follow the steps below: :::::tabs{variant="container"} - ::::tab{id="cloud9" label="Cloud9"} - 1. In the **Cloud9 terminal** navigate to `code/workspace/dynamic-references`: + ::::tab{id="code-editor" label="Code Editor"} + 1. In the **Code Editor terminal** navigate to `code/workspace/dynamic-references`: :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/dynamic-references ::: diff --git a/content/intermediate/templates/language-extensions/index.ja.md b/content/intermediate/templates/language-extensions/index.ja.md index 26cbab06c..92968b426 100644 --- a/content/intermediate/templates/language-extensions/index.ja.md +++ b/content/intermediate/templates/language-extensions/index.ja.md @@ -77,7 +77,7 @@ Resources: 次に、変更したテンプレートを使用して `us-east-1` リージョンに新しいスタックを作成します。 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 1. 次の AWS CLI コマンドを実行してスタックを作成します。 :::code{language=shell showLineNumbers=false showCopyAction=true} aws cloudformation create-stack \ @@ -165,7 +165,7 @@ Dashboard: パート 1 で作成した既存のスタックを更新します。そのためには、以下に示す手順を実施します。 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 1. 次の AWS CLI コマンドを実行して、スタック `cfn-workshop-language-extensions` を更新します。 :::code{language=shell showLineNumbers=false showCopyAction=true} aws cloudformation update-stack \ @@ -221,7 +221,7 @@ CloudFormation テンプレートでダッシュボードを記述する時に * チャレンジソリューションの全文は、`code/solutions/language-extensions` ディレクトリにある `language-extensions-solutions.yaml` というテンプレートにあります。 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 1. 次の AWS CLI コマンドを実行してスタックを作成しましょう。 :::code{language=shell showLineNumbers=false showCopyAction=true} aws cloudformation create-stack \ @@ -257,7 +257,7 @@ aws cloudformation wait stack-update-complete \ このラボで作成したリソースを削除します。以下の手順を実行してください。 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 1. 次の AWS CLI コマンドを実行して、スタック `cfn-workshop-language-extensions` を削除します。 :::code{language=shell showLineNumbers=false showCopyAction=true} aws cloudformation delete-stack \ diff --git a/content/intermediate/templates/language-extensions/index.md b/content/intermediate/templates/language-extensions/index.md index 76bdb7580..078ac456c 100644 --- a/content/intermediate/templates/language-extensions/index.md +++ b/content/intermediate/templates/language-extensions/index.md @@ -77,7 +77,7 @@ Save the template file, and proceed to the next steps. You'll now create a new stack, using the template you modified, in the `us-east-1` region. :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 1. Let's create a stack by running the following AWS CLI command. :::code{language=shell showLineNumbers=false showCopyAction=true} aws cloudformation create-stack \ @@ -165,7 +165,7 @@ Save the template file, and proceed to the next steps. You'll now update your existing stack that you created in Part 1. To do so, follow steps shown next: :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 1. Update the stack `cfn-workshop-language-extensions` by running the following AWS CLI command. :::code{language=shell showLineNumbers=false showCopyAction=true} aws cloudformation update-stack \ @@ -221,7 +221,7 @@ Refer to the [CloudWatch Dashboard structure](https://docs.aws.amazon.com/Amazon * You can find the full challenge solution in the template called `language-extensions-solution.yaml`, that is in the `code/solutions/language-extensions` directory. :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 1. Let's create the stack by running the following AWS CLI command. :::code{language=shell showLineNumbers=false showCopyAction=true} aws cloudformation create-stack \ @@ -257,7 +257,7 @@ aws cloudformation wait stack-update-complete \ You'll now tear down the resources you created in this lab. Use following steps: :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 1. Delete the stack `cfn-workshop-language-extensions` by running the following AWS CLI command. :::code{language=shell showLineNumbers=false showCopyAction=true} aws cloudformation delete-stack \ diff --git a/content/intermediate/templates/looping-over-collections/index.ja.md b/content/intermediate/templates/looping-over-collections/index.ja.md index d206dd763..138fb4e59 100644 --- a/content/intermediate/templates/looping-over-collections/index.ja.md +++ b/content/intermediate/templates/looping-over-collections/index.ja.md @@ -163,7 +163,7 @@ Resources: これで新しい CloudFormation スタックを作成し、上で記述したコレクションをループして 3 つの S3 バケットがどのようにプロビジョニングされるかを確認します。`us-east-1` リージョンに新しいスタックを作成します。 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 次の AWS CLI コマンドを実行します。 :::code{language=shell showLineNumbers=false showCopyAction=true} @@ -342,7 +342,7 @@ aws cloudformation wait stack-create-complete \ さて、コードで記述した VPC 関連リソースのインフラストラクチャをプロビジョニングしましょう!ラボのこの部分で行ってきたすべての変更を含む `vpc.yaml` ファイルを保存し、以下の手順に沿って `vpc.yaml` ファイルを使用して `looping-over-collections-vpc` という名前の新しいスタックを作成します。新しいスタックは `us-east-1` リージョンに作成します。 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 次の AWS CLI コマンドを実行します。 :::code{language=shell showLineNumbers=false showCopyAction=true} @@ -427,7 +427,7 @@ Outputs: 次に、既存の `looping-over-collections-vpc` スタックを以下の `Outputs` 情報を含むテンプレートで更新します。 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 次の AWS CLI コマンドを実行します。 :::code{language=shell showLineNumbers=false showCopyAction=true} @@ -473,7 +473,7 @@ aws cloudformation wait stack-update-complete \ 次に、このラボで作成したリソースを削除します。以下の手順を実行してください。 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 次の AWS CLI コマンドを実行して、`looping-over-collections-s3-buckets` スタックを削除します。 :::code{language=shell showLineNumbers=false showCopyAction=true} diff --git a/content/intermediate/templates/looping-over-collections/index.md b/content/intermediate/templates/looping-over-collections/index.md index 8feb947c3..de44e0f06 100644 --- a/content/intermediate/templates/looping-over-collections/index.md +++ b/content/intermediate/templates/looping-over-collections/index.md @@ -162,7 +162,7 @@ The lines starting with `Type: AWS::S3::Bucket` and below, in the example, const It’s now time to create a new CloudFormation stack, to see how your three S3 buckets will be provisioned by looping over the collection you described above! You'll create a new stack in the `us-east-1` region. :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} Run the following AWS CLI command: :::code{language=shell showLineNumbers=false showCopyAction=true} @@ -341,7 +341,7 @@ Moreover, note the `AllocationId` [property](https://docs.aws.amazon.com/AWSClou It’s now time to provision the infrastructure for the VPC-related resources you described with code! Save the `vpc.yaml` file with all the changes you’ve been applying along this part of the lab, and follow the indications below to create a new stack, called `looping-over-collections-vpc`, using the `vpc.yaml` file. You'll create the new stack in the `us-east-1` region. :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} Run the following AWS CLI command: :::code{language=shell showLineNumbers=false showCopyAction=true} @@ -426,7 +426,7 @@ Outputs: Next, update the existing `looping-over-collections-vpc` stack with the updated template containing the `Outputs` information below. :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} Run the following AWS CLI command: :::code{language=shell showLineNumbers=false showCopyAction=true} @@ -472,7 +472,7 @@ When the stack update is complete, you should be able to see the outputs in the You'll now delete the resources you created as part of this lab. Use the following steps: :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} Delete the `looping-over-collections-s3-buckets` stack, by running the following AWS CLI command: :::code{language=shell showLineNumbers=false showCopyAction=true} diff --git a/content/intermediate/templates/nested-stacks/index.ja.md b/content/intermediate/templates/nested-stacks/index.ja.md index 7c261c08d..b31b75fe9 100644 --- a/content/intermediate/templates/nested-stacks/index.ja.md +++ b/content/intermediate/templates/nested-stacks/index.ja.md @@ -143,8 +143,8 @@ VpcStack: ##### 3. VPC スタックを S3 にアップロード :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. **Cloud9 ターミナル** で `code/workspace/nested-stacks` ディレクトリに移動します。 +::::tab{id="code-editor" label="Code Editor"} +1. **Code Editor ターミナル** で `code/workspace/nested-stacks` ディレクトリに移動します。 :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/nested-stacks ::: @@ -168,8 +168,8 @@ VpcStack: ::: :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. **Cloud9 ターミナル** で `code/workspace/nested-stacks` ディレクトリに移動します。 +::::tab{id="code-editor" label="Code Editor"} +1. **Code Editor ターミナル** で `code/workspace/nested-stacks` ディレクトリに移動します。 :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/nested-stacks ::: @@ -257,8 +257,8 @@ IamStack: [VPC スタック](#3.-vpc-s3) と同様に、IAM テンプレートを S3 にアップロードします。 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. **Cloud9 ターミナル** で `code/workspace/nested-stacks` ディレクトリに移動します。 +::::tab{id="code-editor" label="Code Editor"} +1. **Code Editor ターミナル** で `code/workspace/nested-stacks` ディレクトリに移動します。 :::code{language=shell showLineNumbers=true showCopyAction=true} cd cfn101-workshop/code/workspace/nested-stacks ::: @@ -279,8 +279,8 @@ IamStack: 以前に作成したネストスタックを新しいテンプレートで更新します。 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. **Cloud9 ターミナル** で `code/workspace/nested-stacks` ディレクトリに移動します。 +::::tab{id="code-editor" label="Code Editor"} +1. **Code Editor ターミナル** で `code/workspace/nested-stacks` ディレクトリに移動します。 :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/nested-stacks ::: @@ -501,8 +501,8 @@ Outputs: 前のステップの [VPC スタックのアップロード](#3.-vpc-s3) と同様に、`vpc.yaml`、`ec2.yaml`、 `iam.yaml` テンプレートを S3 バケットにアップロードします。 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. **Cloud9 ターミナル** で `code/workspace/nested-stacks` ディレクトリに移動します。 +::::tab{id="code-editor" label="Code Editor"} +1. **Code Editor ターミナル** で `code/workspace/nested-stacks` ディレクトリに移動します。 :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/nested-stacks ::: @@ -526,8 +526,8 @@ aws s3 cp ec2.yaml s3://{bucket-name} 以前に作成したネストスタックを新しいテンプレートで更新します。 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. **Cloud9 ターミナル** で `code/workspace/nested-stacks` ディレクトリに移動します。 +::::tab{id="code-editor" label="Code Editor"} +1. **Code Editor ターミナル** で `code/workspace/nested-stacks` ディレクトリに移動します。 :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/nested-stacks ::: diff --git a/content/intermediate/templates/nested-stacks/index.md b/content/intermediate/templates/nested-stacks/index.md index b41096ee4..639b4455b 100644 --- a/content/intermediate/templates/nested-stacks/index.md +++ b/content/intermediate/templates/nested-stacks/index.md @@ -145,8 +145,8 @@ VpcStack: ##### 3. Upload the VPC stack to S3 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. In the **Cloud9 terminal** navigate to `code/workspace/nested-stacks`: +::::tab{id="code-editor" label="Code Editor"} +1. In the **Code Editor terminal** navigate to `code/workspace/nested-stacks`: :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/nested-stacks ::: @@ -173,8 +173,8 @@ See the earlier [Linting and Testing](/basics/templates/linting-and-testing) lab ::: :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. In the **Cloud9 terminal** navigate to `code/workspace/nested-stacks`: +::::tab{id="code-editor" label="Code Editor"} +1. In the **Code Editor terminal** navigate to `code/workspace/nested-stacks`: :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/nested-stacks ::: @@ -262,8 +262,8 @@ IamStack: Similarly to the [VPC stack](#3.-upload-the-vpc-stack-to-s3), upload the IAM template to the S3. :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. In the **Cloud9 terminal** navigate to `code/workspace/nested-stacks`: +::::tab{id="code-editor" label="Code Editor"} +1. In the **Code Editor terminal** navigate to `code/workspace/nested-stacks`: :::code{language=shell showLineNumbers=true showCopyAction=true} cd cfn101-workshop/code/workspace/nested-stacks ::: @@ -284,8 +284,8 @@ Similarly to the [VPC stack](#3.-upload-the-vpc-stack-to-s3), upload the IAM tem Update the previously created nested stack with a new template. :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. In the **Cloud9 terminal** navigate to `code/workspace/nested-stacks`: +::::tab{id="code-editor" label="Code Editor"} +1. In the **Code Editor terminal** navigate to `code/workspace/nested-stacks`: :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/nested-stacks ::: @@ -507,8 +507,8 @@ and `iam.yaml` templates to your S3 bucket. :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. In the **Cloud9 terminal** navigate to `code/workspace/nested-stacks`: +::::tab{id="code-editor" label="Code Editor"} +1. In the **Code Editor terminal** navigate to `code/workspace/nested-stacks`: :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/nested-stacks ::: @@ -532,8 +532,8 @@ aws s3 cp ec2.yaml s3://{bucket-name} Update the previously created nested stack with a new template. :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. In the **Cloud9 terminal** navigate to `code/workspace/nested-stacks`: +::::tab{id="code-editor" label="Code Editor"} +1. In the **Code Editor terminal** navigate to `code/workspace/nested-stacks`: :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/nested-stacks ::: diff --git a/content/intermediate/templates/package-and-deploy/index.ja.md b/content/intermediate/templates/package-and-deploy/index.ja.md index dbfdbae3f..2c0b1a950 100644 --- a/content/intermediate/templates/package-and-deploy/index.ja.md +++ b/content/intermediate/templates/package-and-deploy/index.ja.md @@ -151,7 +151,7 @@ aws s3 cp s3://example-bucket-name/cfn-workshop-package-deploy/1234567890 . `package` はファイルを ZIP 形式で圧縮することがわかっているので `.zip` 拡張子がなくても `unzip` できます。 :::::tabs{variant="container"} -::::tab{id="shell" label="Cloud9/Unix/Linux"} +::::tab{id="shell" label="Unix/Linux"} :::code{language=shell showLineNumbers=false showCopyAction=false} unzip -l ce6c47b6c84d94bd207cea18e7d93458 @@ -247,7 +247,7 @@ Lambda 関数は、現在の UTC の日付と時刻を取得します。次に ターミナルから以下を実行します。 :::::tabs{variant="container"} -::::tab{id="sh" label="Cloud9/Unix/Linux"} +::::tab{id="sh" label="Unix/Linux"} :::code{language=shell showLineNumbers=false showCopyAction=true} aws lambda invoke \ --function-name cfn-workshop-python-function \ @@ -282,7 +282,7 @@ Lambda がトリガーされ、Lambda からのレスポンスが `response.json :::::tabs{variant="container"} -::::tab{id="sh" label="Cloud9/Unix/Linux"} +::::tab{id="sh" label="Unix/Linux"} :::code{language=shell showLineNumbers=false showCopyAction=true} cat response.json ::: @@ -301,7 +301,7 @@ more response.json 次の手順に従ってこのラボで作成したリソースをクリーンアップしてください。 :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 1. 次の AWS CLI コマンドを使用して S3 バケットを削除します。 :::code{language=shell showLineNumbers=false showCopyAction=true} aws s3 rb s3://example-bucket-name --force diff --git a/content/intermediate/templates/package-and-deploy/index.md b/content/intermediate/templates/package-and-deploy/index.md index 9ddb1ac11..c8ebbe898 100644 --- a/content/intermediate/templates/package-and-deploy/index.md +++ b/content/intermediate/templates/package-and-deploy/index.md @@ -152,7 +152,7 @@ aws s3 cp s3://example-bucket-name/cfn-workshop-package-deploy/1234567890 . We know that `package` will generate ZIP files, so even there is no `.zip` extension you can still `unzip` it. :::::tabs{variant="container"} -::::tab{id="shell" label="Cloud9/Unix/Linux"} +::::tab{id="shell" label="Unix/Linux"} :::code{language=shell showLineNumbers=false showCopyAction=false} unzip -l ce6c47b6c84d94bd207cea18e7d93458 @@ -250,7 +250,7 @@ The Lambda function will determinate current UTC date and time. Then it will con From your terminal run: :::::tabs{variant="container"} -::::tab{id="sh" label="Cloud9/Unix/Linux"} +::::tab{id="sh" label="Unix/Linux"} :::code{language=shell showLineNumbers=false showCopyAction=true} aws lambda invoke \ --function-name cfn-workshop-python-function \ @@ -284,7 +284,7 @@ Lambda will be triggered, and the response form Lambda will be saved in `respons You can check the result of the file by running command below: :::::tabs{variant="container"} -::::tab{id="sh" label="Cloud9/Unix/Linux"} +::::tab{id="sh" label="Unix/Linux"} :::code{language=shell showLineNumbers=false showCopyAction=true} cat response.json ::: @@ -301,7 +301,7 @@ more response.json Choose to follow cleanup steps shown next to clean up resources you created with this lab: :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} +::::tab{id="code-editor" label="Code Editor"} 1. Delete the S3 bucket by using the following AWS CLI command :::code{language=shell showLineNumbers=false showCopyAction=true} aws s3 rb s3://example-bucket-name --force diff --git a/content/intermediate/templates/resource-dependencies/index.ja.md b/content/intermediate/templates/resource-dependencies/index.ja.md index c194283e0..f84615ca5 100644 --- a/content/intermediate/templates/resource-dependencies/index.ja.md +++ b/content/intermediate/templates/resource-dependencies/index.ja.md @@ -65,8 +65,8 @@ AWS CloudFormation コンソールにて、`resource-dependencies-without-depend :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. **Cloud9 ターミナル** で `code/workspace/resource-dependencies` ディレクトリに移動します。 +::::tab{id="code-editor" label="Code Editor"} +1. **Code Editor ターミナル** で `code/workspace/resource-dependencies` ディレクトリに移動します。 :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/resource-dependencies ::: @@ -201,8 +201,8 @@ Resources: :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. **Cloud9 ターミナル** で `code/workspace/resource-dependencies` ディレクトリに移動します。 +::::tab{id="code-editor" label="Code Editor"} +1. **Code Editor ターミナル** で `code/workspace/resource-dependencies` ディレクトリに移動します。 :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/resource-dependencies ::: @@ -291,8 +291,8 @@ S3Bucket: ``` :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. **Cloud9 ターミナル** で `code/workspace/resource-dependencies` ディレクトリに移動します。 +::::tab{id="code-editor" label="Code Editor"} +1. **Code Editor ターミナル** で `code/workspace/resource-dependencies` ディレクトリに移動します。 :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/resource-dependencies ::: diff --git a/content/intermediate/templates/resource-dependencies/index.md b/content/intermediate/templates/resource-dependencies/index.md index 0dbca1666..af1e38021 100644 --- a/content/intermediate/templates/resource-dependencies/index.md +++ b/content/intermediate/templates/resource-dependencies/index.md @@ -65,8 +65,8 @@ Use the AWS CloudFormation Console to [create a stack](https://docs.aws.amazon.c :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. In the **Cloud9 terminal** navigate to `code/workspace/resource-dependencies`: +::::tab{id="code-editor" label="Code Editor"} +1. In the **Code Editor terminal** navigate to `code/workspace/resource-dependencies`: :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/resource-dependencies ::: @@ -201,8 +201,8 @@ Let’s create a stack, and verify the above behavior. Use the AWS CloudFormatio :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. In the **Cloud9 terminal** navigate to `code/workspace/resource-dependencies`: +::::tab{id="code-editor" label="Code Editor"} +1. In the **Code Editor terminal** navigate to `code/workspace/resource-dependencies`: :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/resource-dependencies ::: @@ -292,8 +292,8 @@ S3Bucket: ``` :::::tabs{variant="container"} -::::tab{id="cloud9" label="Cloud9"} -1. In the **Cloud9 terminal** navigate to `code/workspace/resource-dependencies`: +::::tab{id="code-editor" label="Code Editor"} +1. In the **Code Editor terminal** navigate to `code/workspace/resource-dependencies`: :::code{language=shell showLineNumbers=false showCopyAction=true} cd cfn101-workshop/code/workspace/resource-dependencies :::