Skip to content

Releases: cloudposse/terraform-aws-mwaa

v0.6.4

24 Jul 03:06
Compare
Choose a tag to compare

🤖 Automatic Updates

Update .github/settings.yml @osterman (#56) ## what - Update `.github/settings.yml` - Drop `.github/auto-release.yml` files

why

  • Re-apply .github/settings.yml from org level
  • Use organization level auto-release settings

references

  • DEV-1242 Add protected tags with Repository Rulesets on GitHub

v0.6.3

07 Jun 12:37
3ab5bec
Compare
Choose a tag to compare
Delete .github/workflows/auto-format.yml @goruha (#55)

what

  • Remove auto-format workflow

why

  • Get rid of pull_request_target because of security reason
  • Auto format workflows are deprecated and already removed from all other repos

🤖 Automatic Updates

Update release workflow to allow pull-requests: write @osterman (#54)

what

  • Update workflow (.github/workflows/release.yaml) to have permission to comment on PR

why

  • So we can support commenting on PRs with a link to the release
Update GitHub Workflows to use shared workflows from '.github' repo @osterman (#53)

what

  • Update workflows (.github/workflows) to use shared workflows from .github repo

why

  • Reduce nested levels of reusable workflows

v0.6.2

18 May 03:06
Compare
Choose a tag to compare

🤖 Automatic Updates

Update GitHub Workflows to Fix ReviewDog TFLint Action @osterman (#51)

what

  • Update workflows (.github/workflows) to add issue: write permission needed by ReviewDog tflint action

why

  • The ReviewDog action will comment with line-level suggestions based on linting failures

v0.6.1

06 May 03:06
Compare
Choose a tag to compare

🤖 Automatic Updates

Update GitHub workflows @osterman (#50)

what

  • Update workflows (.github/workflows/settings.yaml)

why

  • Support new readme generation workflow.
  • Generate banners
Use GitHub Action Workflows from `cloudposse/.github` Repo @osterman (#49)

what

  • Install latest GitHub Action Workflows

why

  • Use shared workflows from cldouposse/.github repository
  • Simplify management of workflows from centralized hub of configuration
Add GitHub Settings @osterman (#48)

what

  • Install a repository config (.github/settings.yaml)

why

  • Programmatically manage GitHub repo settings
Update Scaffolding @osterman (#44)

what

  • Reran make readme to rebuild README.md from README.yaml
  • Migrate to square badges
  • Add scaffolding for repo settings and Mergify

why

  • Upstream template changed in the .github repo
  • Work better with repository rulesets
  • Modernize look & feel

v0.6.0

19 Oct 19:05
51cd0b4
Compare
Choose a tag to compare
AWS MWAA Startup Script @DustyShap (#36)

What

Add startup_script_s3_path and startup_script_s3_object_version arguments to the module to be able use these options from aws_mwaa_environment terraform resource.

Why

We need to be able to pull secrets into the AWS MWAA Environment, set connection strings, etc, by way of a bash script that runs before MWAA environment starts

v0.5.0

17 May 09:10
96a63c7
Compare
Choose a tag to compare
  • No changes

v0.4.8

09 Jun 17:17
96a63c7
Compare
Choose a tag to compare

🚀 Enhancements

Fix Security Group Outputs @milldr (#24)

what

  • compact() module.mwaa_security_group.* outputs

why

  • Fix edge case error:

│ Error: Invalid function argument
│
│   on .terraform-x/modules/mwaa_environment/outputs.tf line 52, in output "security_group_arn":
│   52:   value       = join("", module.mwaa_security_group.*.arn)
│     ├────────────────
│     │ module.mwaa_security_group is object with 4 attributes
│
│ Invalid value for "lists" parameter: element 0 is null; cannot concatenate null values.
╵

v0.4.7

11 May 19:01
ecfb21b
Compare
Choose a tag to compare

🤖 Automatic Updates

chore(deps): update terraform cloudposse/security-group/aws to v1.0.1 @renovate (#23)

This PR contains the following updates:

Package Type Update Change
cloudposse/security-group/aws (source) module patch 1.0.0 -> 1.0.1

v0.4.6

11 May 00:27
8d093bc
Compare
Choose a tag to compare

🤖 Automatic Updates

chore(deps): update terraform cloudposse/security-group/aws to v1 @renovate (#22)

This PR contains the following updates:

Package Type Update Change
cloudposse/security-group/aws (source) module major 0.4.3 -> 1.0.0

v0.4.5

06 May 22:12
87885ef
Compare
Choose a tag to compare

🤖 Automatic Updates

chore(deps): update terraform cloudposse/s3-bucket/aws to v2.0.1 @renovate (#21)

This PR contains the following updates:

Package Type Update Change
cloudposse/s3-bucket/aws (source) module patch 2.0.0 -> 2.0.1

Release Notes

cloudposse/terraform-aws-s3-bucket

v2.0.1

Compare Source

git.io->cloudposse.tools update @​dylanbannon (#​149) #### what and why Change all references to `git.io/build-harness` into `cloudposse.tools/build-harness`, since `git.io` redirects will stop working on April 29th, 2022. #### References - DEV-143
#### 🚀 Enhancements
Use object lock enabled @​nitrocode (#​148) #### what * Use object lock enabled #### why * Deprecation of dynamic `object_lock_configuration` for `object_lock_enabled`
│ Warning: Argument is deprecated
│
│   with module.bucket.aws_s3_bucket.default,
│   on .terraform/modules/bucket/main.tf line 30, in resource "aws_s3_bucket" "default":
│   30: resource "aws_s3_bucket" "default" {
│
│ Use the top-level parameter object_lock_enabled and the aws_s3_bucket_object_lock_configuration resource instead

references