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

Feature request: add attributes to data.pagerduty_user data source

Open mdb opened this issue 1 year ago • 0 comments

Hi there,

Similar to issue #719, it would be useful if a data.pagerduty_user surfaced additional attributes associated with the user. In current implementation it features only the following in association with each user...

  • name
  • email
  • id

Affected Resource(s)

  • data.pagerduty_user

Terraform Configuration Files

data "pagerduty_user" "users" {
  email = "[email protected]
}

Expected Behavior

data.pagerduty_user featured additional user attributes returned by the get user API:

Actual Behavior

data.pagerduty_user only returns name, id, and email in association with each user.

mdb avatar Jul 30 '23 23:07 mdb