Skip to content

Commit

Permalink
is_active doesn't actually do anything
Browse files Browse the repository at this point in the history
  • Loading branch information
N-lson committed Oct 10, 2024
1 parent bc81ed3 commit 86bab11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion octopusdeploy_framework/schemas/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ func (u UserSchema) GetResourceSchema() resourceSchema.Schema {
"display_name": GetDisplayNameResourceSchema(),
"can_password_be_edited": GetReadonlyBooleanResourceAttribute("Specifies whether or not the password can be edited."),
"email_address": GetEmailAddressResourceSchema(),
"is_active": GetOptionalBooleanResourceAttribute("Specifies whether or not the user is active.", true),
"is_active": GetReadonlyBooleanResourceAttribute("Specifies whether or not the user is active."),
"is_requestor": GetReadonlyBooleanResourceAttribute("Specifies whether or not the user is the requestor."),
"is_service": GetOptionalBooleanResourceAttribute("Specifies whether or not the user is a service account.", false),
},
Expand Down

0 comments on commit 86bab11

Please sign in to comment.