Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/data-sources/user_roles.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Read-Only:

- `can_be_deleted` (Boolean)
- `description` (String)
- `granted_space_permissions` (List of String)
- `granted_space_permissions` (Set of String)
- `granted_system_permissions` (List of String)
- `id` (String)
- `name` (String)
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/user_role.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ resource "octopusdeploy_user_role" "example" {

- `can_be_deleted` (Boolean)
- `description` (String) The description of this user role.
- `granted_space_permissions` (List of String)
- `granted_space_permissions` (Set of String)
- `granted_system_permissions` (List of String)
- `id` (String) The unique ID for this resource.
- `space_permission_descriptions` (List of String)
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/schema_user_role.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func getUserRoleSchema() map[string]*schema.Schema {
"granted_space_permissions": {
Elem: &schema.Schema{Type: schema.TypeString},
Optional: true,
Type: schema.TypeList,
Type: schema.TypeSet,
},
"granted_system_permissions": {
Elem: &schema.Schema{Type: schema.TypeString},
Expand Down
Loading