Skip to content

Commit

Permalink
Fix AWS provider 4 deprecation warnings (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonweil authored Mar 13, 2023
1 parent 6a8b1ed commit 9489339
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions modules/account-assignments/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ data "aws_identitystore_group" "this" {
for_each = local.group_list
identity_store_id = local.identity_store_id

filter {
attribute_path = "DisplayName"
attribute_value = each.key
alternate_identifier {
unique_attribute {
attribute_path = "DisplayName"
attribute_value = each.key
}
}

depends_on = [null_resource.dependency]
Expand Down
2 changes: 1 addition & 1 deletion modules/account-assignments/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.26.0"
version = ">= 4.40.0"
}
}
}

0 comments on commit 9489339

Please sign in to comment.