From dff84c826c429a01cb9eeb38f92fefd92d710df0 Mon Sep 17 00:00:00 2001 From: Daniel Chen Date: Tue, 15 Jul 2025 12:20:35 -0400 Subject: [PATCH 1/2] updating description of new fields collected in July release --- .../admin/license-example-usage-payload.mdx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/content/terraform-enterprise/v202507-1/docs/partials/replicated-and-fdo/admin/license-example-usage-payload.mdx b/content/terraform-enterprise/v202507-1/docs/partials/replicated-and-fdo/admin/license-example-usage-payload.mdx index 1d6645d4b5..5f2be60b09 100644 --- a/content/terraform-enterprise/v202507-1/docs/partials/replicated-and-fdo/admin/license-example-usage-payload.mdx +++ b/content/terraform-enterprise/v202507-1/docs/partials/replicated-and-fdo/admin/license-example-usage-payload.mdx @@ -106,7 +106,7 @@ The following JSON payload describes the product usage data that Terraform Enter "value": 0, "mode": "write" }, - "deployment_option": { # No data collected + "deployment_option": { # The deployment option configured on this installation "key": "deployment_option", "value": 0, "mode": "write" @@ -136,7 +136,7 @@ The following JSON payload describes the product usage data that Terraform Enter "value": 0, "mode": "write" }, - "operational_mode": { # No data collected + "operational_mode": { # The operational mode configured on this installation "key": "operational_mode", "value": 0, "mode": "write" @@ -266,27 +266,27 @@ The following JSON payload describes the product usage data that Terraform Enter "value": 0, "mode": "write" }, - "workspaces_count_continuous_validation": { # No data collected + "workspaces_count_continuous_validation": { # Workspaces configured with continuous validation "key": "workspaces_count_continuous_validation", "value": 0, "mode": "write" }, - "workspaces_count_drift_detection": { # No data collected + "workspaces_count_drift_detection": { # Workspaces with drift detected "key": "workspaces_count_drift_detection", "value": 0, "mode": "write" }, - "workspaces_count_no_code_modules": { # No data collected + "workspaces_count_no_code_modules": { # Workspaces using no code modules "key": "workspaces_count_no_code_modules", "value": 0, "mode": "write" }, - "workspaces_count_notifications_enabled": { # No data collected + "workspaces_count_notifications_enabled": { # Workspaces with notifications enabled "key": "workspaces_count_notifications_enabled", "value": 0, "mode": "write" }, - "workspaces_count_opa_policy_sets": { # No data collected + "workspaces_count_opa_policy_sets": { # Workspaces with using opa policy sets "key": "workspaces_count_opa_policy_sets", "value": 0, "mode": "write" @@ -296,7 +296,7 @@ The following JSON payload describes the product usage data that Terraform Enter "value": 0, "mode": "write" }, - "workspaces_count_sentinel_policy_sets": { # No data collected + "workspaces_count_sentinel_policy_sets": { # Workspaces with using sentinel policy sets "key": "workspaces_count_sentinel_policy_sets", "value": 0, "mode": "write" From f156c79dab65ffda8626bb80b4ef1b0b4862b5a5 Mon Sep 17 00:00:00 2001 From: Daniel Chen Date: Wed, 30 Jul 2025 21:47:48 -0400 Subject: [PATCH 2/2] adding new fields --- .../admin/license-example-usage-payload.mdx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/content/terraform-enterprise/v202507-1/docs/partials/replicated-and-fdo/admin/license-example-usage-payload.mdx b/content/terraform-enterprise/v202507-1/docs/partials/replicated-and-fdo/admin/license-example-usage-payload.mdx index 5f2be60b09..ae587fdc60 100644 --- a/content/terraform-enterprise/v202507-1/docs/partials/replicated-and-fdo/admin/license-example-usage-payload.mdx +++ b/content/terraform-enterprise/v202507-1/docs/partials/replicated-and-fdo/admin/license-example-usage-payload.mdx @@ -300,13 +300,21 @@ The following JSON payload describes the product usage data that Terraform Enter "key": "workspaces_count_sentinel_policy_sets", "value": 0, "mode": "write" + }, + "using_tfe_explorer": { # Set to 1 when Explorer is enabled in the TFE installation + "key": "using_tfe_explorer", + "value": 0, + "mode": "write" + } + "cpu_architecture": { # The underlying cpu architecture the TFE installation is setup in, 0 = other, 1 = amd64, 2 = arm64 + "key": "using_tfe_explorer", + "value": 1, + "mode": "write" } }, } ], "metadata":{ - } - } } ```