Book Image

AWS Tools for PowerShell 6

By : Ramesh Waghmare
Book Image

AWS Tools for PowerShell 6

By: Ramesh Waghmare

Overview of this book

AWS Tools for PowerShell 6 shows you exactly how to automate all the aspects of AWS. You can take advantage of the amazing power of the cloud, yet add powerful scripts and mechanisms to perform common tasks faster than ever before. This book expands on the Amazon documentation with real-world, useful examples and production-ready scripts to automate all the aspects of your new cloud platform. It will cover topics such as managing Windows with PowerShell, setting up security services, administering database services, and deploying and managing networking. You will also explore advanced topics such as PowerShell authoring techniques, and configuring and managing storage and content delivery. By the end of this book, you will be able to use Amazon Web Services to automate and manage Windows servers. You will also have gained a good understanding of automating the AWS infrastructure using simple coding.
Table of Contents (17 chapters)

Understanding IP addresses on EC2

This is a very common topic of confusion when you start working on EC2. So, let's discuss some of the aspects with regards to IP addressing on EC2. There are two types of IP addresses that EC2 instances can have. One is the public IP address and the other one is a private IP address. As you know, public IP addresses can be reached over the internet, whereas a private IP address cannot. It's very important for you to understand the IP addressing on the EC2 instance in order to design your fault tolerant and highly available environment. Once you launch an EC2 instance, it is assigned a private IP address at boot time, and the IP address is picked up from the subnet range in which you can launch the EC2 instance. So, every time you launch an EC2 instance, it will have a private IP address assigned. However, you can have public IP addresses...