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)

DB Option Groups

Some of the database engines offer additional features which make it easier for the admin to manage databases to provide additional security or functionality. This is where you have to use option groups to enable and configure database features. You add options in the option groups that are available for the specific database engine, and when you associate that option group with the DB instance, specified features are enabled in the DB instance. Currently, you can have an option group for MariaDB, MySQL, Oracle, and Microsoft SQL Server. At the moment, there are no options that need to be set for PostgreSQL and Aurora.

There are a couple of options that you can set for MySQL DB, as follows.

The Oracle option list is big compared to the other engines. You can set the following options:

SQL Server also allows you to set a couple of options, as follows:

MariaDB...