Skip to content

Commit

Permalink
#16 from clouddrove/bug/6ix-81
Browse files Browse the repository at this point in the history
updated deprecated variables
  • Loading branch information
h1manshu98 committed Apr 5, 2023
2 parents d48f838 + 2d9c20e commit 357a36e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ data "aws_iam_policy_document" "resource_full_access" {


data "aws_iam_policy_document" "resource" {
source_json = local.principals_readonly_access_non_empty ? join("", data.aws_iam_policy_document.resource_readonly_access.*.json) : join("", data.aws_iam_policy_document.empty.*.json)
override_json = local.principals_full_access_non_empty ? join("", data.aws_iam_policy_document.resource_full_access.*.json) : join("", data.aws_iam_policy_document.empty.*.json)
source_policy_documents = [local.principals_readonly_access_non_empty ? join("", data.aws_iam_policy_document.resource_readonly_access.*.json) : join("", data.aws_iam_policy_document.empty.*.json)]
override_policy_documents = [local.principals_full_access_non_empty ? join("", data.aws_iam_policy_document.resource_full_access.*.json) : join("", data.aws_iam_policy_document.empty.*.json)]
}

# Module : ECR REPOSITORY
Expand Down

0 comments on commit 357a36e

Please sign in to comment.