Skip to content
This repository was archived by the owner on Nov 4, 2022. It is now read-only.

Commit 24a0217

Browse files
committed
Hiding chapter 6
1 parent 45a8eec commit 24a0217

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

workshop/content/crossaccount/_index.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title = "Cross Account Deployments"
33
date = 2019-10-02T16:10:44-07:00
44
weight = 40
5-
chapter = true
5+
chapter = false
66
draft = true
77
hidden = true
88
pre = "<b>6. </b>"

workshop/content/crossaccount/cdkprodenv/_index.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title = "CDK prod environment"
33
date = 2019-11-11T14:46:02-08:00
44
weight = 35
5-
draft = false
6-
hidden = false
5+
draft = true
6+
hidden = true
77
+++
88

99
Before we define any resources in the stack, we need to configure the CDK project to deploy this stack in the Production account. For this, the CDK has the concept of [Environments](https://docs.aws.amazon.com/cdk/latest/guide/environments.html), which allows you to deploy Stacks in different AWS accounts from within the same CDK project.

workshop/content/crossaccount/crossaroles/_index.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title = "Cross account roles"
33
date = 2019-11-11T14:46:02-08:00
44
weight = 40
5-
draft = false
6-
hidden = false
5+
draft = true
6+
hidden = true
77
+++
88

99
Now that we have verified that we can deploy an empty stack to production, lets create the actual cross account roles in the `lib/prod-iam-stack.ts` file we created earlier. Add the following content to the file:

workshop/content/crossaccount/howitworks/_index.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title = "How it works"
33
date = 2019-11-11T14:46:02-08:00
44
weight = 20
5-
draft = false
6-
hidden = false
5+
draft = true
6+
hidden = true
77
+++
88

99
Before jumping to the implementation, we need to understand the different pieces that allow Code Pipeline to deploy across a different account. The following diagram shows a zoomed-in view of the services and roles involved in this process.

workshop/content/crossaccount/intro/_index.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title = "Introduction"
33
date = 2019-11-11T14:46:02-08:00
44
weight = 15
5-
draft = false
6-
hidden = false
5+
draft = true
6+
hidden = true
77
+++
88

99
### Environment separation

workshop/content/crossaccount/prodcredentials/_index.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title = "Create Prod credentials"
33
date = 2019-11-11T14:46:02-08:00
44
weight = 22
5-
draft = false
6-
hidden = false
5+
draft = true
6+
hidden = true
77
+++
88

99
In this chapter you will be deploying to both, the DEV account and the PROD account from your Cloud9 environment, for that to work you need to have valid IAM credentials and profiles configured in your ~/.aws/credentials file.

workshop/content/crossaccount/prodsetup/_index.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title = "Prod account setup"
33
date = 2019-11-11T14:46:02-08:00
44
weight = 30
5-
draft = false
6-
hidden = false
5+
draft = true
6+
hidden = true
77
+++
88

99
Let's get started creating the necessary IAM roles in the Production account to grant cross account access. We will do this as a separate stack within the same CDK project created in Chapter 4.

0 commit comments

Comments
 (0)