You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/setup-cloud9.md
+31-32Lines changed: 31 additions & 32 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# AWS Cloud9 Setup
2
2
3
-
Most steps in this repository will need to be performed from a Linux command prompt. An especially convenient way of doing this is to use AWS Cloud9, a cloud-based Integrated Development Environment (IDE). Cloud9 allows you to edit source files and execute commands from an easy-to-use web interface. It comes preconfigured with many of the tools needed for software development, and because it runs in the AWS Cloud, it can be an especially easy way to access other cloud services. One other handy feature is that your Cloud9 instances automatically stop running after a configurable period of inactivity, which helps reduce costs.
3
+
Most steps in this repository will need to be performed from a Linux command prompt. An especially convenient way of doing this is to use AWS Cloud9, a cloud-based Integrated Development Environment (IDE). Cloud9 allows you to edit source files and execute commands from an easy-to-use web interface. It comes pre-configured with many of the tools needed for software development, and because it runs in the AWS Cloud, it can be an especially easy way to access other cloud services. One other handy feature is that your Cloud9 instances automatically stop running after a configurable period of inactivity, which helps reduce costs.
4
4
5
5
## Create a Cloud9 environment
6
6
@@ -14,10 +14,10 @@ Create an instance profile called **Cloud9-Developer-Access**
14
14
15
15
1. Create role policy definition file
16
16
17
-
```bash
18
-
cat <<EOF> ec2-trust-policy.json
17
+
```bash
18
+
cat > ec2-trust-policy.json<<EOF
19
19
{
20
-
"Version": "2012-10-17",
20
+
"Version": "2012-10-17",
21
21
"Statement": [
22
22
{
23
23
"Effect": "Allow",
@@ -28,38 +28,38 @@ Create an instance profile called **Cloud9-Developer-Access**
28
28
}
29
29
]
30
30
}
31
-
EOF
32
-
```
31
+
EOF
32
+
```
33
33
34
34
2. Create new IAM role called "Cloud9-Developer-Access" and assign the new role policy
0 commit comments