You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`name` (String) The name of the group. Could be a department or a team. Requires replacement if changed.
27
37
38
+
### Optional
39
+
40
+
-`image_uri` (Attributes) Group's profile image or gradient colors. Supports uploaded image URLs and generated gradient avatars. Requires replacement if changed. (see [below for nested schema](#nestedatt--image_uri))
41
+
28
42
### Read-Only
29
43
30
44
-`id` (String) Group unique identifier
31
45
46
+
<aid="nestedatt--image_uri"></a>
47
+
### Nested Schema for `image_uri`
48
+
49
+
Optional:
50
+
51
+
-`additional_properties` (String) Requires replacement if changed.; Parsed as JSON.
52
+
-`gradient_colors` (List of String) Two hex color strings [base_color, accent_color] for mesh gradient avatar. Requires replacement if changed.
53
+
-`original` (String) Requires replacement if changed.
54
+
-`thumbnail_32` (String) Requires replacement if changed.
55
+
-`thumbnail_64` (String) Requires replacement if changed.
56
+
32
57
## Import
33
58
34
59
Import is supported using the following syntax:
35
60
61
+
In Terraform v1.5.0 and later, the [`import` block](https://developer.hashicorp.com/terraform/language/import) can be used with the `id` attribute, for example:
62
+
63
+
```terraform
64
+
import {
65
+
to = epilot-usergroup_user_group.my_epilot-usergroup_user_group
66
+
id = "..."
67
+
}
68
+
```
69
+
70
+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
0 commit comments