Skip to content

Releases: squareops/terraform-aws-rds-aurora

v2.2.1

22 Nov 13:31
99fed1a
Compare
Choose a tag to compare

Release Notes

  • Made the repo public.
  • Updated source and versions in example modules
  • Variabilize the port in security group

v2.2.0

15 Nov 08:30
d5fc71a
Compare
Choose a tag to compare

Release Notes

  • added custom password functionality and print database name

  • added custom password functionality and print database name

  • fixed security group inbound & outbound rule

  • Update main.tf

v2.1.1

13 Nov 10:34
7b8d168
Compare
Choose a tag to compare

Release Notes

  • Added support of assume role to create resources using AWS IAM roles in same or different AWS accounts
  • Assume Role Configuration:
    • Enhanced the provider.tf file to properly utilize the AWS assume role mechanism for cross-account resource creation.
    • The configuration now supports both scenarios:
      • If assume_role_config is not provided or the role_arn is an empty string (length of local.role_arn is 0), the provider will default to using the AWS credentials configured on your local machine.
      • If a valid role_arn is specified (length of local.role_arn is greater than 0), the provider will assume the specified role for resource creation
  • Updated the role configuration as follows:
role_arn           = "" # Pass role ARN of another AWS account where RDS should be created; ensure required policies are added to this role.
external_id        = "" # Define your external ID here
assume_role_config = length(local.role_arn) > 0 ? { role_arn = local.role_arn } : null

v2.1.0

08 Aug 13:08
06e9dff
Compare
Choose a tag to compare

Release Note

Fine-Tuned MySQL Monitoring: In this release, we introduce a new parameter that allows you to easily manage slow-query logs and fine-tune the long-query-time threshold for your RDS MySQL instances. This addition empowers you to gain deeper insights into database performance and optimize query execution for improved efficiency.

v2.0.0

18 May 07:39
c32bda2
Compare
Choose a tag to compare

Release Notes:

  • upgrade to the latest engine version
  • Refactored and improved README
  • Improved Variable names and description

v1.0.0

20 Feb 13:15
Compare
Choose a tag to compare

Initial Release Version