Skip to content

Commit

Permalink
fix: aws-iam-policy-document-data-resource
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Freedman committed Jun 12, 2023
1 parent 36a9a0a commit 3935afb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/transfer-user/data.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ data "aws_iam_policy_document" "trust_policy" {
}

data "aws_iam_policy_document" "inline_policy" {
count = var.create_iam_role ? 1 : 0
override_json = var.iam_role_policy_statements
count = var.create_iam_role ? 1 : 0
override_policy_documents = [var.iam_role_policy_statements]
}

data "aws_ssm_parameter" "user_ssh_key" {
Expand Down

0 comments on commit 3935afb

Please sign in to comment.