hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.63k stars 9.01k forks source link

[Enhancement]: aws_lakeformation_permissions lf_tag_policy expression values supports max 15 #31224

Open rahulgoyal2987 opened 1 year ago

rahulgoyal2987 commented 1 year ago

Description

resource "aws_lakeformation_permissions" "test" {
  principal = aws_iam_role.sales_role.arn
  permissions = ["CREATE_TABLE", "ALTER", "DROP"]

  lf_tag_policy {
    resource_type = "DATABASE"

    expression {
      key    = "Team"
      values = ["Sales"]
    }
  }
}

resource type "aws_lakeformation_permissions" lf_tag_policy.expression.values supports only 15 values.

Affected Resource(s) and/or Data Source(s)

aws 4.66.0

Potential Terraform Configuration

No response

References

No response

Would you like to implement a fix?

Yes

github-actions[bot] commented 1 year ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue

rahulgoyal2987 commented 1 year ago

Please find pull request for issue. Let me know when these changes will release: https://github.com/hashicorp/terraform-provider-aws/pull/31222