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)

The Elastic IP address

As discussed in the earlier section, public IP addresses assigned to the EC2 instance can change when an EC2 instance is stopped and started. An Elastic IP address is a static IP address specifically designed for the dynamic nature of cloud computing. Public IPs and Elastic IP addresses are both public, and they both allow an EC2 instance to communicate over the internet. The Elastic IP address and public IP addresses differ in how long they are associated with the specific EC2 instance. When you stop an EC2 instance, the public IP address is released back to the Amazon public pool, and when you restart an instance, you get a new public IP address for your EC2 instance from the Amazon pool. The Elastic IP address is allocated in the AWS account and associated with an EC2 instance until it's disassociated from it. AWS will charge you for an Elastic IP...