Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tedilabs/account/aws requirement from ~> 0.28.0 to ~> 0.30.0 in /modules/config-recorder #52

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update tedilabs/account/aws requirement from ~> 0.28.0 to ~> 0.30.0
Updates the requirements on [tedilabs/account/aws](https://github.com/tedilabs/terraform-aws-account) to permit the latest version.
- [Release notes](https://github.com/tedilabs/terraform-aws-account/releases)
- [Commits](tedilabs/terraform-aws-account@v0.28.0...v0.30.0)

---
updated-dependencies:
- dependency-name: tedilabs/account/aws
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored May 13, 2024
commit 5a7299a16c7095f92fcbe90c45c5a91034142f85
4 changes: 2 additions & 2 deletions modules/config-recorder/iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module "role__recorder" {
count = var.default_service_role.enabled ? 1 : 0

source = "tedilabs/account/aws//modules/iam-role"
version = "~> 0.28.0"
version = "~> 0.30.0"

name = coalesce(
var.default_service_role.name,
Expand Down Expand Up @@ -53,7 +53,7 @@ module "role__aggregator" {
count = var.organization_aggregation.enabled && var.default_organization_aggregator_role.enabled ? 1 : 0

source = "tedilabs/account/aws//modules/iam-role"
version = "~> 0.28.0"
version = "~> 0.30.0"

name = coalesce(
var.default_organization_aggregator_role.name,
Expand Down
Loading