From 9f7ed131bbeb7b87bce1bb3c0a90828e28860e2c Mon Sep 17 00:00:00 2001 From: Grace Rehn Date: Wed, 20 Nov 2024 11:57:32 +1000 Subject: [PATCH] fix: wrong schema attr --- octopusdeploy_framework/schemas/tenant.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octopusdeploy_framework/schemas/tenant.go b/octopusdeploy_framework/schemas/tenant.go index 69813c60..2eb4803c 100644 --- a/octopusdeploy_framework/schemas/tenant.go +++ b/octopusdeploy_framework/schemas/tenant.go @@ -144,7 +144,7 @@ func (t TenantSchema) GetResourceSchema() resourceSchema.Schema { }, "description": GetDescriptionResourceSchema("tenant"), "id": GetIdResourceSchema(), - "is_disabled": datasourceSchema.BoolAttribute{ + "is_disabled": resourceSchema.BoolAttribute{ Description: "The disabled status of this tenant.", Optional: true, Computed: true,