From ecac4e5f56b64359698253b4144ef9466b45dcc9 Mon Sep 17 00:00:00 2001 From: Rexredinger Date: Sun, 11 Sep 2022 23:22:47 -0400 Subject: [PATCH] Explain 'assessable' and fix typoes --- organization.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/organization.go b/organization.go index 8bf581e3f..dfc64d6f9 100644 --- a/organization.go +++ b/organization.go @@ -164,7 +164,7 @@ type OrganizationCreateOptions struct { // Optional: SendPassingStatusesForUntriggeredSpeculativePlans toggles behavior of untriggered speculative plans to send status updates to version control systems like GitHub. SendPassingStatusesForUntriggeredSpeculativePlans *bool `jsonapi:"attr,send-passing-statuses-for-untriggered-speculative-plans,omitempty"` - // Optional: AssessmentsEnforced toggles whether health assessment enablement is enforced across all assessable workspaces or if the decission to enabled health assessments is delegated to the workspace setting AssessmentsEnabled. + // Optional: AssessmentsEnforced toggles whether health assessment enablement is enforced across all assessable workspaces (those with a minimum terraform versio of 0.15.4 and not running in local execution mode) or if the decision to enabled health assessments is delegated to the workspace setting AssessmentsEnabled. AssessmentsEnforced *bool `jsonapi:"attr,assessments-enforced"` } @@ -200,7 +200,7 @@ type OrganizationUpdateOptions struct { // SendPassingStatusesForUntriggeredSpeculativePlans toggles behavior of untriggered speculative plans to send status updates to version control systems like GitHub. SendPassingStatusesForUntriggeredSpeculativePlans *bool `jsonapi:"attr,send-passing-statuses-for-untriggered-speculative-plans,omitempty"` - // Optional: AssessmentsEnforced toggles whether health assessment enablement is enforced across all assessable workspaces or if the decission to enabled health assessments is delegated to the workspace setting AssessmentsEnabled. + // Optional: AssessmentsEnforced toggles whether health assessment enablement is enforced across all assessable workspaces (those with a minimum terraform versio of 0.15.4 and not running in local execution mode) or if the decision to enabled health assessments is delegated to the workspace setting AssessmentsEnabled. AssessmentsEnforced *bool `jsonapi:"attr,assessments-enforced"` }