terraform-provider-aws icon indicating copy to clipboard operation
terraform-provider-aws copied to clipboard

[Enhancement]: Parameter filters on aws_ssm_parameters_by_path

Open syskill opened this issue 2 years ago • 1 comments

Description

The GetParametersByPath API can optionally take an array of parameter filters. It would be nice to use this capability in the Terraform data source.

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

  • aws_ssm_parameters_by_path

Potential Terraform Configuration

data "aws_ssm_parameters_by_path" "foobar" {
  path      = "/foo/bar"
  recursive = true

  parameter_filter {
    key    = "Type"
    option = "Equals"
    values = ["StringList"]
  }
}

References

No response

Would you like to implement a fix?

No response

syskill avatar Nov 29 '22 16:11 syskill

Community Note

Voting for Prioritization

  • Please vote on this issue by adding a 👍 reaction to the original post to help the community and maintainers prioritize this request.
  • Please see our prioritization guide for information on how we prioritize.
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request.

Volunteering to Work on This Issue

  • If you are interested in working on this issue, please leave a comment.
  • If this would be your first contribution, please review the contribution guide.

github-actions[bot] avatar Nov 29 '22 16:11 github-actions[bot]