terraform-provider-aws
terraform-provider-aws copied to clipboard
[Enhancement]: Parameter filters on aws_ssm_parameters_by_path
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
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.