Skip to content

Releases: cloudposse/terraform-provider-awsutils

v0.19.1

23 Apr 12:31
c441d59
Compare
Choose a tag to compare
Go auto release workflows @goruha (#67) # What * Use go auto-release workflow `cloudposse/.github/.github/workflows/shared-go-auto-release.yml@main` * Remove `.goreleaser.yml`. Now will use https://github.com/cloudposse/.github/blob/main/.github/goreleaser.yml * Drop `auto-release.yaml`. Now will use https://github.com/cloudposse/.github/blob/main/.github/auto-release.yml and https://github.com/cloudposse/.github/blob/main/.github/auto-release-hotfix.yml

Why

  • Consolidate go releases workflows pattern

🤖 Automatic Updates

Add GitHub Settings @osterman (#60) ## what - Install a repository config (`.github/settings.yaml`)

why

  • Programmatically manage GitHub repo settings

0.19.0

25 Mar 21:37
9be9c6e
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.18.1...0.19.0

v0.19.0-rc2

23 Mar 09:17
0.19.0-rc2
fa5ccab
Compare
Choose a tag to compare
v0.19.0-rc2 Pre-release
Pre-release
Auto release fix @goruha (#56)

What

  • Use auto relesase shared workflow

Why

🤖 Automatic Updates

Update Scaffolding @osterman (#55)

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.19.0-rc1 Update AWS config to fix SSO login

09 Mar 07:30
0.19.0-rc1
87e804a
Compare
Choose a tag to compare
Update AWS config to fix SSO login @petrzjunior (#53)

what

  • update aws/aws-sdk-go-v2/config and aws/aws-sdk-go-v2/credentials to the newest versions

why

  • old version does not allow SSO login to AWS and crashes, see #52

Error: error configuring Terraform AWS Provider: loading configuration: profile "profile" is configured to use SSO but is missing required configuration: sso_region, sso_start_url

references

P.S. This is my first ever Go PR, feel free to correct me. This is currently a blocking issue for me so I am trying to push it.

0.16.0

25 Mar 23:33
0.16.0
977fcdc
Compare
Choose a tag to compare

Released May 3, 2023. Accidentally re-released March 25, 2024.

add caller identity data source @mcalhoun (#39)

what

  • Add a data source to get the sts caller identity

why

  • we want to be able to get the caller identity when we are already using this provider without having to configure an additional instance of the official AWS provider

v0.18.2

01 Feb 20:41
16a70f2
Compare
Choose a tag to compare
v0.18.2 Pre-release
Pre-release
Consolidate auto-release workflow @goruha (#54)

what

  • Use cloudposse/github-action-auto-release in auto-release.yaml workflow

why

  • Solve old nodejs warning
  • Reduce duplication of code
Switch to using GHA runner set @Nuru (#51)

what

  • Move builder workflow to GitHub Action Runner Set

why

  • Replacing self-hosted "runners" with "runner set"

0.18.1

31 Jul 23:39
5bfee62
Compare
Choose a tag to compare

🚀 Enhancements

fix bug when resources change outside terraform @mcalhoun (#50)

what

  • Fix a bug where the provider wouldn't detect if a change was made to macie members outside of terraform

why

  • To update terraform state when a change occurs outside of terraform

🐛 Bug Fixes

fix bug when resources change outside terraform @mcalhoun (#50)

what

  • Fix a bug where the provider wouldn't detect if a change was made to macie members outside of terraform

why

  • To update terraform state when a change occurs outside of terraform

0.18.0

31 Jul 20:36
c237c5b
Compare
Choose a tag to compare
update goreleaser config @mcalhoun (#49)

what

  • Update goreleaser config

why

  • Only build needed platforms and architectures

v0.17.0

31 Jul 18:58
2c502b4
Compare
Choose a tag to compare
add org settings resource @mcalhoun (#48)

what

  • Add a new resource awsutils_macie2_organization_settings

why

  • Designating an account as the Macie2 Administrator account in an AWS Organization can optionally enable all newly created accounts and accounts that join the organization after the setting is enabled, however, it does not enable existing accounts. Use this resource to enable a list of existing accounts.

0.15.1 Do not use (build issues)

03 May 03:41
81418b0
Compare
Choose a tag to compare
Pre-release

Binaries for Windows and FreeBSD were not signed in this release. Use v0.16.0 instead.

add caller identity data source @mcalhoun (#39)

what

  • Add a data source to get the sts caller identity

why

  • we want to be able to get the caller identity when we are already using this provider without having to configure an additional instance of the official AWS provider
Split release build into 2 parts to fit in available disk space @Nuru (#43)

what

  • Split release build into 2 parts to fit in available disk space

why

  • Workflow runs out of disk space trying to build all artifacts in one step
Run disk space check on goreleaser failure @Nuru (#42)

what

  • Run disk space check on goreleaser failure

why

  • Debugging why releases fail with "no space left on device"
Add disk space debugging to release workflow @Nuru (#41)

what

  • Add disk space debugging to release workflow

why

  • Workflow is inexplicably running out of disk space
Update release workflow @Nuru (#40)

what

  • Update release workflow to current actions

why

  • Old release workflow used obsolescent actions, which generated warnings and may have used up disk space
Fix small typo in example @jannyg (#34)

what

  • Fix small typo in example

why

  • Example config is not valid

references