Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Various changes after testing the modules #3

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions 3-1-CodeStar-EC2.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ Also you will need a **Text editor** such as [Sublime](www.sublimetext.com/3) or
| 214953911892 | vpc-c53a98a2 | subnet-f74bd3be | subnet-6ec3ac09 |

![Edit EC2 Options](/images/3-1-ec2-static-site/5_editec2options.png)
3.9.2. On the *Review project details* page, observe the AWS tools that will be utilisied and connected by CodeStar. In this case, you should see that:
* CodeCommit is being for Source Control Management
3.9.2. On the *Review project details* page, observe the AWS tools that will be utilised and connected by CodeStar. In this case, you should see that:
* CodeCommit is being used for Source Control Management
* CodeDeploy is being used for Application Deployment, and
* CloudWatch is being used for Monitoring

Expand Down Expand Up @@ -115,8 +115,18 @@ Also you will need a **Text editor** such as [Sublime](www.sublimetext.com/3) or
4.1. Open your web browser and paste in the following URL, https://s3-ap-southeast-2.amazonaws.com/devopsgirls1/index.html
4.2. Click on the new tab, then right click anywhere on the webpage and select *Save as...*
4.3. Change the filename to be index.html and save it in the webpage directory of your cloned git project repository on your workstation. For example, sallytran/webpage/index.html
![Save index.html file](/images/3-1-ec2-static-site/11_saveindex.png)

![Save index.html file](/images/3-1-ec2-static-site/11_saveindex.png)
4.4 In a similar manner, save https://s3-ap-southeast-2.amazonaws.com/devopsgirls1/DevOpsGirls.png and https://s3-ap-southeast-2.amazonaws.com/devopsgirls1/Thumbs-Up.svg. Make sure you don't change their names.
4.5 Create an `index_files` subdirectory and move DevOpsGirls.png and Thumbs-Up.svg into it. `index_files` should be at the same level as `index.html`, i.e. you should end up with this file structure:
```
└── webpage
├── index.html
├── index_files
│   ├── DevOpsGirls.png
│   └── Thumbs-Up.svg
├── (other things...)
```

### 5. Push changes to CodeCommit Repo
5.1. In your command terminal, navigate to the home (root) directory of your CodeCommit repository on your workstation. For example:
`cd C:\sallytran`
Expand Down
Loading