-
Notifications
You must be signed in to change notification settings - Fork 389
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[datadog_user] Add computed attributes to datadog_user
datasource
#2787
base: master
Are you sure you want to change the base?
Conversation
datadog_users
datadog_user
datadog_user
datadog_user
datasource
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left some suggestions from Docs and approved the PR.
@@ -31,6 +31,16 @@ data "datadog_user" "test" { | |||
|
|||
### Read-Only | |||
|
|||
- `created_at` (String) Creation time of the user (RFC3339 format). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `created_at` (String) Creation time of the user (RFC3339 format). | |
- `created_at` (String) The time when the user was created (RFC3339 format). |
@@ -31,6 +31,16 @@ data "datadog_user" "test" { | |||
|
|||
### Read-Only | |||
|
|||
- `created_at` (String) Creation time of the user (RFC3339 format). | |||
- `disabled` (Boolean) Whether the user is disabled. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `disabled` (Boolean) Whether the user is disabled. | |
- `disabled` (Boolean) Indicates whether the user is disabled. |
- `email` (String) Email of the user. | ||
- `handle` (String) Handle of the user. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `handle` (String) Handle of the user. | |
- `handle` (String) The user's handle. |
- `email` (String) Email of the user. | ||
- `handle` (String) Handle of the user. | ||
- `icon` (String) URL of the user's icon. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `icon` (String) URL of the user's icon. | |
- `icon` (String) The URL where the user's icon is located. |
- `id` (String) The ID of this resource. | ||
- `mfa_enabled` (Boolean) If user has MFA enabled. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `mfa_enabled` (Boolean) If user has MFA enabled. | |
- `mfa_enabled` (Boolean) Indicates whether the user has enabled MFA. |
- `id` (String) The ID of this resource. | ||
- `mfa_enabled` (Boolean) If user has MFA enabled. | ||
- `modified_at` (String) Time that the user was last modified (RFC3339 format). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `modified_at` (String) Time that the user was last modified (RFC3339 format). | |
- `modified_at` (String) The time at which the user was last updated (RFC3339 format). |
- `name` (String) Name of the user. | ||
- `service_account` (Boolean) Whether the user is a service account. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `service_account` (Boolean) Whether the user is a service account. | |
- `service_account` (Boolean) Indicates whether the user is a service account. |
- `service_account` (Boolean) Whether the user is a service account. | ||
- `status` (String) Status of the user. | ||
- `title` (String) Title of the user. | ||
- `verified` (Boolean) Whether the user is verified. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `verified` (Boolean) Whether the user is verified. | |
- `verified` (Boolean) Indicates whether the user is verified. |
- `name` (String) Name of the user. | ||
- `service_account` (Boolean) Whether the user is a service account. | ||
- `status` (String) Status of the user. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `status` (String) Status of the user. | |
- `status` (String) The user's status. |
- `name` (String) Name of the user. | ||
- `service_account` (Boolean) Whether the user is a service account. | ||
- `status` (String) Status of the user. | ||
- `title` (String) Title of the user. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `title` (String) Title of the user. | |
- `title` (String) The user's title. |
It is the equivalent of #2786 but for the
datadog_user
datasource