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)

NAT Gateway

IGW is used to direct the traffic to the open internet and is associated with the Route Table intended for public subnets. This means the connection to a particular instance can be initiated from the open internet and from the instance itself. For a private subnet, you cannot initiate the connection from the open internet. But for software patches downloads, or to interact with other AWS services, you need to have a route to the internet so that the connection initiated from the instance should be able to download the patches or work with other AWS services; but no one should be able to initiate the connection from the open internet. This is where we need the NAT Gateway.

The NAT Gateway enables instances in a private subnet to connect to the open internet or to other AWS services, but it prevents the open internet from initiating the connection to those private instances...