Skip to content

Commit

Permalink
chore: fix doc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
grace-rehn committed Nov 20, 2024
1 parent eaf4994 commit 6a612d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/data-sources/tenants.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Read-Only:
- `cloned_from_tenant_id` (String) The ID of the tenant from which this tenant was cloned.
- `description` (String) The description of this tenants.
- `id` (String) The unique ID for this resource.
- `is_disabled` (Boolean) the disabled status of this tenant.
- `is_disabled` (Boolean) The disabled status of this tenant.
- `name` (String) The name of this resource.
- `space_id` (String) The space ID associated with this tenant.
- `tenant_tags` (Set of String) A list of tenant tags associated with this resource.
Expand Down
4 changes: 2 additions & 2 deletions octopusdeploy_framework/schemas/tenant.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func (t TenantSchema) GetDatasourceSchema() datasourceSchema.Schema {
"description": GetDescriptionDatasourceSchema("tenants"),
"id": GetIdDatasourceSchema(true),
"is_disabled": datasourceSchema.BoolAttribute{
Description: "Specifies whether or not the tenant is disabled.",
Description: "The disabled status of this tenant.",
Computed: true,
},
"name": GetReadonlyNameDatasourceSchema(),
Expand Down Expand Up @@ -145,7 +145,7 @@ func (t TenantSchema) GetResourceSchema() resourceSchema.Schema {
"description": GetDescriptionResourceSchema("tenant"),
"id": GetIdResourceSchema(),
"is_disabled": datasourceSchema.BoolAttribute{
Description: "Specifies whether or not the tenant is disabled.",
Description: "The disabled status of this tenant.",
Optional: true,
Computed: true,
},
Expand Down

0 comments on commit 6a612d7

Please sign in to comment.