terraform-provider-pagerduty
terraform-provider-pagerduty copied to clipboard
Feature request: add attributes to data.pagerduty_user data source
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.